Searched refs:program (Results 51 - 54 of 54) sorted by relevance

123

/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DFilter.java274 * transfer from a FieldPort or ProgramPort to its connected target (field or program variable).
281 * Assigns all program variables to the ports they are connected to. Call this after
284 protected void initProgramInputs(Program program, FilterContext context) { argument
285 if (program != null) {
287 if (inputPort.getTarget() == program) {
/frameworks/native/opengl/include/GLES/
H A Dglext.h981 GL_API void GL_APIENTRY glGetnUniformfvEXT (GLuint program, GLint location, GLsizei bufSize, float *params);
982 GL_API void GL_APIENTRY glGetnUniformivEXT (GLuint program, GLint location, GLsizei bufSize, GLint *params);
986 typedef void (GL_APIENTRYP PFNGLGETNUNIFORMFVEXTPROC) (GLuint program, GLint location, GLsizei bufSize, float *params);
987 typedef void (GL_APIENTRYP PFNGLGETNUNIFORMIVEXTPROC) (GLuint program, GLint location, GLsizei bufSize, GLint *params);
1148 GL_API GLboolean GL_APIENTRY glExtIsProgramBinaryQCOM (GLuint program);
1149 GL_API void GL_APIENTRY glExtGetProgramBinarySourceQCOM (GLuint program, GLenum shadertype, GLchar *source, GLint *length);
1153 typedef GLboolean (GL_APIENTRYP PFNGLEXTISPROGRAMBINARYQCOMPROC) (GLuint program);
1154 typedef void (GL_APIENTRYP PFNGLEXTGETPROGRAMBINARYSOURCEQCOMPROC) (GLuint program, GLenum shadertype, GLchar *source, GLint *length);
/frameworks/base/libs/hwui/
H A DOpenGLRenderer.h671 * Use the specified program with the current GL context. If the program is already
672 * in use, it will not be bound again. If it is not in use, the current program is
673 * marked unused and the specified program becomes used and becomes the new
674 * current program.
676 * @param program The program to use
678 * @return true If the specified program was already in use, false otherwise.
680 inline bool useProgram(Program* program);
H A DOpenGLRenderer.cpp3157 bool OpenGLRenderer::useProgram(Program* program) { argument
3158 if (!program->isInUse()) {
3160 program->use();
3161 mCaches.currentProgram = program;

Completed in 82 milliseconds

123