Searched defs:samplers (Results 1 - 4 of 4) sorted by relevance

/frameworks/rs/
H A DrsProgram.h47 Sampler **samplers; member in struct:android::renderscript::Program::Hal::State
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES30.cpp4013 /* void glGenSamplers ( GLsizei count, GLuint *samplers ) */
4022 GLuint *samplers = (GLuint *) 0; local
4027 _exceptionMessage = "samplers == null";
4039 samplers = samplers_base + offset;
4043 (GLuint *)samplers
4056 /* void glGenSamplers ( GLsizei count, GLuint *samplers ) */
4063 GLuint *samplers = (GLuint *) 0; local
4065 samplers = (GLuint *)getPointer(_env, samplers_buf, &_array, &_remaining, &_bufferOffset);
4066 if (samplers == NULL) {
4068 samplers
4088 GLuint *samplers = (GLuint *) 0; local
4129 GLuint *samplers = (GLuint *) 0; local
[all...]
/frameworks/base/opengl/java/android/opengl/
H A DGLES30.java1484 // C function void glGenSamplers ( GLsizei count, GLuint *samplers )
1488 int[] samplers,
1492 // C function void glGenSamplers ( GLsizei count, GLuint *samplers )
1496 java.nio.IntBuffer samplers
1499 // C function void glDeleteSamplers ( GLsizei count, const GLuint *samplers )
1503 int[] samplers,
1507 // C function void glDeleteSamplers ( GLsizei count, const GLuint *samplers )
1511 java.nio.IntBuffer samplers
1486 glGenSamplers( int count, int[] samplers, int offset ) argument
1501 glDeleteSamplers( int count, int[] samplers, int offset ) argument
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_api.cpp9332 void GLTrace_glGenSamplers(GLsizei count, GLuint * samplers) { argument
9344 // copy argument samplers
9348 arg_samplers->add_int64value((uintptr_t)samplers);
9353 glContext->hooks->gl.glGenSamplers(count, samplers);
9358 (void *) samplers,
9367 void GLTrace_glDeleteSamplers(GLsizei count, const GLuint * samplers) { argument
9379 // copy argument samplers
9383 arg_samplers->add_int64value((uintptr_t)samplers);
9388 glContext->hooks->gl.glDeleteSamplers(count, samplers);
9393 (void *) samplers,
[all...]

Completed in 251 milliseconds