This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

How to open sample codes from OpenGL ES 3.0 Text Guide

Does anyone know how to open the samples from the text guide, Chapter 16 for W7?

I have already downloaded the emulator, cmake and Visual Studio.

The instructions are somewhat confusing for me on page 448.

trying to get started with the 'Hello Triangle' code.

Parents
  • Hi Lester,

    VS2013 is complaining that it can't find the include files (and therefore a bunch of undefined blah) 99% likely because you haven't set the include path to include the directory where they are stored.

    The actual reason for this not just working however appears to be that you're pointing CMake at the directory for a specific example project, when you should be pointing it at the root directory of the repo you have cloned, in your case appears to be E:/OpenGL ES/opengles3-book-master/

    Hth,

    Chris

Reply
  • Hi Lester,

    VS2013 is complaining that it can't find the include files (and therefore a bunch of undefined blah) 99% likely because you haven't set the include path to include the directory where they are stored.

    The actual reason for this not just working however appears to be that you're pointing CMake at the directory for a specific example project, when you should be pointing it at the root directory of the repo you have cloned, in your case appears to be E:/OpenGL ES/opengles3-book-master/

    Hth,

    Chris

Children