/external/libgdx/backends/gdx-backend-moe/src/com/badlogic/gdx/backends/iosrobovm/ |
IOSGLES30.java | 170 public native void glGenSamplers(int count, int[] samplers, int offset);
172 public native void glGenSamplers(int count, IntBuffer samplers);
|
/external/libgdx/backends/gdx-backend-robovm/src/com/badlogic/gdx/backends/iosrobovm/ |
IOSGLES30.java | 154 public native void glGenSamplers(int count, int[] samplers, int offset); 156 public native void glGenSamplers(int count, IntBuffer samplers);
|
/external/libgdx/backends/gdx-backend-android/src/com/badlogic/gdx/backends/android/ |
AndroidGL30.java | 664 public void glGenSamplers (int count, int[] samplers, int offset) { 665 GLES30.glGenSamplers(count, samplers, offset); 669 public void glGenSamplers (int count, java.nio.IntBuffer samplers) { 670 GLES30.glGenSamplers(count, samplers);
|
/external/libgdx/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/ |
LwjglGL30.java | 523 public void glGenSamplers (int count, int[] samplers, int offset) { 525 samplers[i] = GL33.glGenSamplers(); 530 public void glGenSamplers (int count, IntBuffer samplers) { 531 GL33.glGenSamplers(samplers);
|
/external/libgdx/backends/gdx-backend-lwjgl3/src/com/badlogic/gdx/backends/lwjgl3/ |
Lwjgl3GL30.java | 525 public void glGenSamplers (int count, int[] samplers, int offset) { 527 samplers[i] = GL33.glGenSamplers(); 532 public void glGenSamplers (int count, IntBuffer samplers) { 533 GL33.glGenSamplers(samplers);
|
/external/deqp/framework/egl/ |
egluStaticES30Library.inl | 90 { "glGenSamplers", (deFunctionPtr)glGenSamplers },
|
/external/deqp/modules/gles3/functional/ |
es3fNegativeShaderApiTests.cpp | 479 ES3F_ADD_API_CASE(gen_samplers, "Invalid glGenSamplers() usage", 483 glGenSamplers (-1, &sampler); 492 glGenSamplers (1, &sampler); 499 m_log << TestLog::Section("", "GL_INVALID_OPERATION is generated if sampler is not zero or a name previously returned from a call to glGenSamplers."); 521 glGenSamplers (1, &sampler); 523 m_log << TestLog::Section("", "GL_INVALID_OPERATION is generated if sampler is not the name of a sampler object returned from a previous call to glGenSamplers."); 539 glGenSamplers (1, &sampler); 541 m_log << TestLog::Section("", "GL_INVALID_OPERATION is generated if sampler is not the name of a sampler object returned from a previous call to glGenSamplers."); 556 glGenSamplers (1, &sampler); 558 m_log << TestLog::Section("", "GL_INVALID_OPERATION is generated if sampler is not the name of a sampler object previously returned from a call to glGenSamplers.") [all...] |
es3fLifetimeTests.cpp | 432 , m_samplerType (ctx, "sampler", &CallLogWrapper::glGenSamplers,
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/ |
GL30.java | [all...] |
/development/ndk/platforms/android-18/samples/gles3jni/jni/ |
gl3stub.c | 101 FIND_PROC(glGenSamplers); 207 !glGenSamplers || 319 GL_APICALL void (* GL_APIENTRY glGenSamplers) (GLsizei count, GLuint* samplers);
|
gl3stub.h | 464 extern GL_APICALL void (* GL_APIENTRY glGenSamplers) (GLsizei count, GLuint* samplers); [all...] |
/development/ndk/sources/android/ndk_helper/ |
gl3stub.c | 102 FIND_PROC( glGenSamplers ); 155 || !glGetBufferParameteri64v || !glGenSamplers || !glDeleteSamplers 446 GL_APICALL void (* GL_APIENTRY glGenSamplers)( GLsizei count, GLuint* samplers );
|
gl3stub.h | 474 extern GL_APICALL void (* GL_APIENTRY glGenSamplers) (GLsizei count, GLuint* samplers); [all...] |
/external/deqp/modules/gles31/functional/ |
es31fNegativeShaderApiTests.cpp | 579 ctx.glGenSamplers (-1, &sampler); 589 ctx.glGenSamplers (1, &sampler); 596 ctx.beginSection("GL_INVALID_OPERATION is generated if sampler is not zero or a name previously returned from a call to ctx.glGenSamplers."); 620 ctx.glGenSamplers (1, &sampler); 622 ctx.beginSection("GL_INVALID_OPERATION is generated if sampler is not the name of a sampler object returned from a previous call to ctx.glGenSamplers."); 639 ctx.glGenSamplers (1, &sampler); 641 ctx.beginSection("GL_INVALID_OPERATION is generated if sampler is not the name of a sampler object returned from a previous call to ctx.glGenSamplers."); 662 ctx.beginSection("GL_INVALID_OPERATION is generated if sampler is not the name of a sampler object returned from a previous call to ctx.glGenSamplers."); 667 ctx.glGenSamplers(1, &sampler); 685 ctx.beginSection("GL_INVALID_OPERATION is generated if sampler is not the name of a sampler object returned from a previous call to ctx.glGenSamplers.") [all...] |
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/profiling/ |
GL30Profiler.java | [all...] |
/external/deqp/framework/opengl/wrapper/ |
glwInitES30Direct.inl | 90 gl->genSamplers = &glGenSamplers;
|
glwInitES31Direct.inl | 102 gl->genSamplers = &glGenSamplers;
|
glwInitES32Direct.inl | 118 gl->genSamplers = &glGenSamplers;
|
/frameworks/base/opengl/java/android/opengl/ |
GLES30.java | [all...] |
/frameworks/native/opengl/tools/glgen/specs/gles11/ |
GLES30.spec | 86 void glGenSamplers ( GLsizei count, GLuint *samplers )
|
/external/deqp/framework/platform/null/ |
tcuNullRenderContext.cpp | 580 GLW_APICALL void GLW_APIENTRY glGenSamplers (GLsizei count, GLuint* samplers)
|
/external/libgdx/gdx/jni/iosgl/ |
iosgl30.cpp | 841 * Method: glGenSamplers 847 glGenSamplers(count, (GLuint*)&v[offset]); 853 * Method: glGenSamplers 859 glGenSamplers(count, (GLuint*)dataPtr); [all...] |
/external/deqp/framework/opengl/simplereference/ |
sglrContextWrapper.hpp | 273 void glGenSamplers (int count, deUint32* samplers);
|
/frameworks/base/libs/hwui/debug/ |
unwrap_gles.h | 310 #undef glGenSamplers
|
wrap_gles.h | 310 #define glGenSamplers wrap_glGenSamplers [all...] |