--- old/src/java.desktop/share/native/common/java2d/opengl/OGLFuncs.h 2015-07-03 14:54:08.000000000 +0300 +++ new/src/java.desktop/share/native/common/java2d/opengl/OGLFuncs.h 2015-07-03 14:54:08.000000000 +0300 @@ -173,6 +173,11 @@ typedef void (GLAPIENTRY *glDeleteObjectARBType)(GLhandleARB); /** + * GL_NV_texture_barrier extension function typedef's + */ +typedef void (GLAPIENTRY *glTextureBarrierNVType) (void); + +/** * REMIND: this caused an internal error in the MS compiler!?!? * *#define OGL_CHECK_FUNC_ERR(f) \ @@ -316,7 +321,8 @@ OGL_##action##_EXT_FUNC(glGetProgramivARB); \ OGL_##action##_EXT_FUNC(glGetInfoLogARB); \ OGL_##action##_EXT_FUNC(glGetObjectParameterivARB); \ - OGL_##action##_EXT_FUNC(glDeleteObjectARB); + OGL_##action##_EXT_FUNC(glDeleteObjectARB); \ + OGL_##action##_EXT_FUNC(glTextureBarrierNV); #define OGL_EXPRESS_ALL_FUNCS(action) \ OGL_EXPRESS_BASE_FUNCS(action) \