On Tue, Nov 27, 2012 at 6:25 PM, Ken Phillis Jr <[email protected]> wrote: > This commit did not fix the issue. This commit will only attempt to > define the variable if it's already defined. The more correct fix is > to use "#ifndef" instead of "#ifdef" it's specific. > > So to be exact, this line: > #ifdef EGL_OPENGL_ES3_BIT_KHR > > should be either: > #ifndef EGL_OPENGL_ES3_BIT_KHR > > or: ( This is only required on extremely outdated compilers... most > support #ifndef) > #if !defined(EGL_OPENGL_ES3_BIT_KHR)
It was just a typo. Anyway, fixed. _______________________________________________ Piglit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/piglit
