/frameworks/native/opengl/tools/glgen/specs/gles11/ |
GLES31.spec | 7 void glGetProgramInterfaceiv ( GLuint program, GLenum programInterface, GLenum pname, GLint *params ) 8 GLuint glGetProgramResourceIndex ( GLuint program, GLenum programInterface, const GLchar *name ) 9 void glGetProgramResourceName ( GLuint program, GLenum programInterface, GLuint index, GLsizei bufSize, GLsizei *length, GLchar *name ) 10 void glGetProgramResourceiv ( GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum *props, GLsizei bufSize, GLsizei *length, GLint *params ) 11 GLint glGetProgramResourceLocation ( GLuint program, GLenum programInterface, const GLchar *name ) 12 void glUseProgramStages ( GLuint pipeline, GLbitfield stages, GLuint program ) 13 void glActiveShaderProgram ( GLuint pipeline, GLuint program ) 20 void glProgramUniform1i ( GLuint program, GLint location, GLint v0 ) 21 void glProgramUniform2i ( GLuint program, GLint location, GLint v0, GLint v1 ) 22 void glProgramUniform3i ( GLuint program, GLint location, GLint v0, GLint v1, GLint v2 [all...] |
/frameworks/native/opengl/tools/glgen/stubs/gles11/ |
glGetTransformFeedbackVarying.java | 1 // C function void glGetTransformFeedbackVarying ( GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name ) 4 int program, 17 // C function void glGetTransformFeedbackVarying ( GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name ) 23 int program, 32 // C function void glGetTransformFeedbackVarying ( GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name ) 35 int program, 44 // C function void glGetTransformFeedbackVarying ( GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name ) 47 int program, 55 // C function void glGetTransformFeedbackVarying ( GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name ) 58 int program, [all...] |
/development/samples/HelloEffects/src/com/example/android/mediafx/ |
GLToolbox.java | 52 int program = GLES20.glCreateProgram(); local 53 if (program != 0) { 54 GLES20.glAttachShader(program, vertexShader); 56 GLES20.glAttachShader(program, pixelShader); 58 GLES20.glLinkProgram(program); 60 GLES20.glGetProgramiv(program, GLES20.GL_LINK_STATUS, linkStatus, 63 String info = GLES20.glGetProgramInfoLog(program); 64 GLES20.glDeleteProgram(program); 65 program = 0; 66 throw new RuntimeException("Could not link program: " + info) [all...] |
/external/deqp/modules/gles2/functional/ |
es2fNegativeShaderApiTests.cpp | 2 * drawElements Quality Program OpenGL ES 2.0 Module 101 GLuint program = glCreateProgram(); 102 glShaderSource(program, 0, 0, 0); 106 glDeleteProgram(program); 124 GLuint program = glCreateProgram(); 125 glCompileShader(program); 129 glDeleteProgram(program); 152 GLuint program = glCreateProgram(); 176 glShaderBinary(1, &program, binaryFormats[0], 0, 0); 190 glDeleteProgram(program); [all...] |
/external/skia/tools/ |
find_run_binary.py | 15 """Runs a program from the command line and returns stdout. 22 stdout from the program, as a single string. 25 Exception: the program exited with a nonzero return code. 36 def find_path_to_program(program): 37 """Returns path to an existing program binary. 40 program: Basename of the program to find (e.g., 'render_pictures'). 43 Absolute path to the program binary, as a string. 46 Exception: unable to find the program binary. 50 possible_paths = [os.path.join(trunk_path, 'out', 'Release', program), [all...] |
/developers/build/prebuilts/gradle/MediaEffects/Application/src/main/java/com/example/android/mediaeffects/ |
GLToolbox.java | 49 int program = GLES20.glCreateProgram(); local 50 if (program != 0) { 51 GLES20.glAttachShader(program, vertexShader); 53 GLES20.glAttachShader(program, pixelShader); 55 GLES20.glLinkProgram(program); 57 GLES20.glGetProgramiv(program, GLES20.GL_LINK_STATUS, linkStatus, 60 String info = GLES20.glGetProgramInfoLog(program); 61 GLES20.glDeleteProgram(program); 62 throw new RuntimeException("Could not link program: " + info); 65 return program; [all...] |
/developers/samples/android/media/MediaEffects/Application/src/main/java/com/example/android/mediaeffects/ |
GLToolbox.java | 49 int program = GLES20.glCreateProgram(); local 50 if (program != 0) { 51 GLES20.glAttachShader(program, vertexShader); 53 GLES20.glAttachShader(program, pixelShader); 55 GLES20.glLinkProgram(program); 57 GLES20.glGetProgramiv(program, GLES20.GL_LINK_STATUS, linkStatus, 60 String info = GLES20.glGetProgramInfoLog(program); 61 GLES20.glDeleteProgram(program); 62 throw new RuntimeException("Could not link program: " + info); 65 return program; [all...] |
/development/samples/browseable/MediaEffects/src/com.example.android.mediaeffects/ |
GLToolbox.java | 49 int program = GLES20.glCreateProgram(); local 50 if (program != 0) { 51 GLES20.glAttachShader(program, vertexShader); 53 GLES20.glAttachShader(program, pixelShader); 55 GLES20.glLinkProgram(program); 57 GLES20.glGetProgramiv(program, GLES20.GL_LINK_STATUS, linkStatus, 60 String info = GLES20.glGetProgramInfoLog(program); 61 GLES20.glDeleteProgram(program); 62 throw new RuntimeException("Could not link program: " + info); 65 return program; [all...] |
/art/tools/dexfuzz/src/dexfuzz/fuzzers/ |
FuzzerMultipleExecute.java | 21 import dexfuzz.program.Program; 43 Program program = fuzz(); local 45 execute(program);
|
/cts/tests/tests/opengl/libopengltest/ |
attach_shader_four.cpp | 26 GLuint program = glCreateProgram(); local 31 glGetAttachedShaders(program, maxCount, 39 glDeleteProgram(program);
|
attach_shader_ten.cpp | 28 GLuint program = glCreateProgram(); local 29 glAttachShader(program, fragmentShader); 35 glGetAttachedShaders(program, maxCount, 43 glDeleteProgram(program);
|
attach_shader_two.cpp | 29 GLuint program = glCreateProgram(); local 31 glAttachShader(program, vertexShader); 37 glGetAttachedShaders(program, maxCount, 46 glDeleteProgram(program);
|
/external/mesa3d/src/gallium/drivers/i915/ |
i915_debug_fp.c | 258 unsigned opcode, const unsigned * program) 261 print_dest_reg(stream, program[0]); 262 if (program[0] & A0_DEST_SATURATE) 270 print_src_reg(stream, GET_SRC0_REG(program[0], program[1])); 277 print_src_reg(stream, GET_SRC1_REG(program[1], program[2])); 284 print_src_reg(stream, GET_SRC2_REG(program[2])); 292 unsigned opcode, const unsigned * program) 294 print_dest_reg(stream, program[0] | A0_DEST_CHANNEL_ALL) [all...] |
/external/autotest/client/site_tests/graphics_SanAngeles/src/ |
shader.c | 60 GLuint program = glCreateProgram(); local 61 if (program == 0) 67 glDeleteProgram(program); 70 glAttachShader(program, shaderVertex); 76 glDeleteProgram(program); 79 glAttachShader(program, shaderFragment); 82 glLinkProgram(program); 83 return program; 110 glGetAttribLocation(sShader##programName.program, #varName); \ 114 glGetUniformLocation(sShader##programName.program, #varName); [all...] |
shader.h | 15 // program 16 GLuint program; member in struct:__anon7065 36 // program 37 GLuint program; member in struct:__anon7066 46 // program 47 GLuint program; member in struct:__anon7067 63 extern void bindShaderProgram(GLuint program);
|
/art/tools/dexfuzz/src/dexfuzz/program/ |
MBranchInsn.java | 17 package dexfuzz.program;
|
MInsnWithData.java | 17 package dexfuzz.program;
|
MTryBlock.java | 17 package dexfuzz.program;
|
/external/ceres-solver/internal/ceres/ |
coordinate_descent_minimizer.h | 45 class Program; 47 // Given a Program, and a ParameterBlockOrdering which partitions 56 // program are constant. 59 bool Init(const Program& program, 71 static bool IsOrderingValid(const Program& program, 79 static ParameterBlockOrdering* CreateOrdering(const Program& program); 82 void Solve(Program* program [all...] |
/external/deqp/external/vulkancts/framework/vulkan/ |
vkPrograms.cpp | 21 * \brief Program utilities. 105 ProgramBinary* buildProgram (const glu::ProgramSources& program, ProgramFormat binaryFormat, glu::ShaderProgramInfo* buildInfo) 113 if (!compileGlslToSpirV(program, &binary, buildInfo)) 122 buildInfo->program.linkOk = false; 123 buildInfo->program.infoLog += "\n" + validationLog.str(); 132 TCU_THROW(NotSupportedError, "Unsupported program format"); 135 ProgramBinary* assembleProgram (const SpirVAsmSource& program, SpirVProgramInfo* buildInfo) 140 if (!assembleSpirV(&program, &binary, buildInfo)) 159 void disassembleProgram (const ProgramBinary& program, std::ostream* dst) 161 if (program.getFormat() == PROGRAM_FORMAT_SPIRV [all...] |
/external/deqp/framework/opengl/ |
gluProgramInterfaceQuery.hpp | 4 * drawElements Quality Program OpenGL Utilities 23 * \brief Program interface query utilities 89 int getProgramResourceInt (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, deUint32 queryParam); 90 deUint32 getProgramResourceUint (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, deUint32 queryParam); 92 void getProgramResourceName (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, std::string& dst); 93 std::string getProgramResourceName (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index); 95 void getProgramInterfaceBlockInfo (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, InterfaceBlockInfo& info); 96 InterfaceBlockInfo getProgramInterfaceBlockInfo (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index); 98 void getProgramInterfaceVariableInfo (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, InterfaceVariableInfo& info); 99 InterfaceVariableInfo getProgramInterfaceVariableInfo (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index) [all...] |
/external/mesa3d/src/mesa/drivers/dri/i915/ |
i915_debug.h | 46 extern void i915_disassemble_program(const unsigned *program, unsigned sz);
|
/external/mesa3d/src/mesa/program/ |
nvfragparse.h | 41 struct gl_fragment_program *program);
|
/external/skia/src/gpu/glsl/ |
GrGLSLVertexShaderBuilder.h | 21 GrGLSLVertexBuilder(GrGLSLProgramBuilder* program);
|
/frameworks/base/opengl/java/android/opengl/ |
GLES31.java | 254 // C function void glGetProgramInterfaceiv ( GLuint program, GLenum programInterface, GLenum pname, GLint *params ) 257 int program, 264 // C function void glGetProgramInterfaceiv ( GLuint program, GLenum programInterface, GLenum pname, GLint *params ) 267 int program, 273 // C function GLuint glGetProgramResourceIndex ( GLuint program, GLenum programInterface, const GLchar *name ) 276 int program, 281 // C function void glGetProgramResourceName ( GLuint program, GLenum programInterface, GLuint index, GLsizei bufSize, GLsizei *length, GLchar *name ) 284 int program, 289 // C function void glGetProgramResourceiv ( GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum *props, GLsizei bufSize, GLsizei *length, GLint *params ) 292 int program, [all...] |