/external/deqp/external/openglcts/modules/gles31/ |
D | es31cProgramInterfaceQueryTests.cpp | 310 GL_UNIFORM, 1043 VerifyGetProgramInterfaceiv(program, GL_UNIFORM, GL_ACTIVE_RESOURCES, in Run() 1045 VerifyGetProgramInterfaceiv(program, GL_UNIFORM, GL_MAX_NAME_LENGTH, 8, error); in Run() 1048 VerifyGetProgramResourceIndex(program, GL_UNIFORM, indices, "repos", error); in Run() 1049 VerifyGetProgramResourceIndex(program, GL_UNIFORM, indices, "recolor", error); in Run() 1051 VerifyGetProgramResourceName(program, GL_UNIFORM, indices["repos"], "repos", error); in Run() 1052 VerifyGetProgramResourceName(program, GL_UNIFORM, indices["recolor"], "recolor", error); in Run() 1054 …VerifyGetProgramResourceLocation(program, GL_UNIFORM, "repos", glGetUniformLocation(program, "repo… in Run() 1055 …VerifyGetProgramResourceLocation(program, GL_UNIFORM, "recolor", glGetUniformLocation(program, "re… in Run() 1072 VerifyGetProgramResourceiv(program, GL_UNIFORM, indices["repos"], 13, props, 13, expected, error); in Run() [all …]
|
D | es31cLayoutBindingTests.cpp | 2219 glw::GLuint idx = gl().getProgramResourceIndex(getProgram(), GL_UNIFORM, (*it).c_str()); in getBindingPoints() 2224 gl().getProgramResourceiv(getProgram(), GL_UNIFORM, idx, 1, ¶m, 1, NULL, in getBindingPoints() 2251 glw::GLuint idx = gl().getProgramResourceIndex(getProgram(), GL_UNIFORM, (*it).c_str()); in getOffsets() 2256 gl().getProgramResourceiv(getProgram(), GL_UNIFORM, idx, 1, ¶m, 1, NULL, &value); in getOffsets()
|
/external/deqp/external/openglcts/modules/gl/ |
D | gl4cProgramInterfaceQueryTests.cpp | 375 GL_UNIFORM, 1282 VerifyGetProgramInterfaceiv(program, GL_UNIFORM, GL_ACTIVE_RESOURCES, in Run() 1284 VerifyGetProgramInterfaceiv(program, GL_UNIFORM, GL_MAX_NAME_LENGTH, 8, error); in Run() 1287 VerifyGetProgramResourceIndex(program, GL_UNIFORM, indices, "repos", error); in Run() 1288 VerifyGetProgramResourceIndex(program, GL_UNIFORM, indices, "recolor", error); in Run() 1290 VerifyGetProgramResourceName(program, GL_UNIFORM, indices["repos"], "repos", error); in Run() 1291 VerifyGetProgramResourceName(program, GL_UNIFORM, indices["recolor"], "recolor", error); in Run() 1293 …VerifyGetProgramResourceLocation(program, GL_UNIFORM, "repos", glGetUniformLocation(program, "repo… in Run() 1294 …VerifyGetProgramResourceLocation(program, GL_UNIFORM, "recolor", glGetUniformLocation(program, "re… in Run() 1316 VerifyGetProgramResourceiv(program, GL_UNIFORM, indices["repos"], 16, props, 16, expected, error); in Run() [all …]
|
/external/deqp/external/openglcts/modules/glesext/geometry_shader/ |
D | esextcGeometryShaderProgramResource.cpp | 354 checkIfResourceIsReferenced(m_program_object_id, GL_UNIFORM, "uni_model_view_projection"); in iterate() 356 checkIfResourceIsReferenced(m_program_object_id, GL_UNIFORM, "uni_colors_white"); in iterate() 398 gl.getProgramResourceIndex(m_program_object_id, GL_UNIFORM, "uni_atom_horizontal"); in iterate() 400 gl.getProgramResourceIndex(m_program_object_id, GL_UNIFORM, "uni_atom_vertical"); in iterate() 411 …gl.getProgramResourceiv(m_program_object_id, GL_UNIFORM, atom_horizontal_uniform_indx, 1, /* propC… in iterate() 417 …gl.getProgramResourceiv(m_program_object_id, GL_UNIFORM, atom_vertical_uniform_indx, 1, /* propCou… in iterate()
|
/external/mesa3d/src/mesa/main/ |
D | shader_query.cpp | 446 case GL_UNIFORM: in _mesa_program_resource_name() 480 case GL_UNIFORM: in _mesa_program_resource_array_size() 663 case GL_UNIFORM: in _mesa_program_resource_find_name() 716 case GL_UNIFORM: in program_resource_find_binding_offset() 793 assert(programInterface == GL_UNIFORM || in _mesa_program_resource_find_active_variable() 894 case GL_UNIFORM: in _mesa_program_resource_find_index() 1046 case GL_UNIFORM: in program_resource_location() 1214 GL_UNIFORM, in get_buffer_property() 1229 GL_UNIFORM, in get_buffer_property() 1373 case GL_UNIFORM: in _mesa_program_resource_prop() [all …]
|
D | program_resource.c | 39 case GL_UNIFORM: in supported_interface_enum() 313 case GL_UNIFORM: in _mesa_GetProgramResourceIndex() 418 case GL_UNIFORM: in _mesa_GetProgramResourceLocation()
|
D | uniform_query.cpp | 61 GL_UNIFORM, index); in _mesa_GetActiveUniform() 69 _mesa_get_program_resource_name(shProg, GL_UNIFORM, index, maxLength, in _mesa_GetActiveUniform() 142 if (!_mesa_program_resource_find_index(shProg, GL_UNIFORM, in _mesa_GetActiveUniformsiv() 150 res = _mesa_program_resource_find_index(shProg, GL_UNIFORM, in _mesa_GetActiveUniformsiv()
|
D | uniforms.c | 1022 return _mesa_program_resource_location(shProg, GL_UNIFORM, name); in _mesa_GetUniformLocation() 1033 return _mesa_program_resource_location(shProg, GL_UNIFORM, name); in _mesa_GetUniformLocation_no_error() 1090 _mesa_program_resource_find_name(shProg, GL_UNIFORM, uniformNames[i], in _mesa_GetUniformIndices() 1394 _mesa_get_program_resource_name(shProg, GL_UNIFORM, uniformIndex, bufSize, in _mesa_GetActiveUniformName()
|
/external/angle/src/tests/gl_tests/ |
D | ProgramInterfaceTest.cpp | 382 glGetProgramInterfaceiv(program, GL_UNIFORM, GL_ACTIVE_RESOURCES, &num); in TEST_P() 386 glGetProgramInterfaceiv(program, GL_UNIFORM, GL_MAX_NAME_LENGTH, &num); in TEST_P() 390 glGetProgramInterfaceiv(program, GL_UNIFORM, GL_MAX_NUM_ACTIVE_VARIABLES, &num); in TEST_P() 438 GLuint index = glGetProgramResourceIndex(program, GL_UNIFORM, "color"); in TEST_P() 444 glGetProgramResourceName(program, GL_UNIFORM, index, sizeof(name), &length, name); in TEST_P() 449 GLint location = glGetProgramResourceLocation(program, GL_UNIFORM, "color"); in TEST_P() 468 glGetProgramResourceiv(program, GL_UNIFORM, index, propCount, props, propCount, &length, in TEST_P() 486 index = glGetProgramResourceIndex(program, GL_UNIFORM, "foo"); in TEST_P() 490 glGetProgramResourceName(program, GL_UNIFORM, index, sizeof(name), &length, name); in TEST_P() 495 location = glGetProgramResourceLocation(program, GL_UNIFORM, "foo"); in TEST_P() [all …]
|
D | GeometryShaderTest.cpp | 602 const GLuint index = glGetProgramResourceIndex(program, GL_UNIFORM, "color"); in TEST_P() 611 glGetProgramResourceiv(program, GL_UNIFORM, index, kPropCount, kProps, kPropCount, &length, in TEST_P() 682 index = glGetProgramResourceIndex(program, GL_UNIFORM, "u_color"); in TEST_P() 683 glGetProgramResourceiv(program, GL_UNIFORM, index, kPropCount, kProps, kPropCount, &length, in TEST_P() 757 index = glGetProgramResourceIndex(programWithAtomicCounter, GL_UNIFORM, "gs_counter"); in TEST_P()
|
D | GLSLTest.cpp | 4622 GLuint index = glGetProgramResourceIndex(program, GL_UNIFORM, "image1"); in TEST_P() 4626 index = glGetProgramResourceIndex(program, GL_UNIFORM, "image2"); in TEST_P() 4649 GLuint index = glGetProgramResourceIndex(program, GL_UNIFORM, "ac1"); in TEST_P() 4653 index = glGetProgramResourceIndex(program, GL_UNIFORM, "ac2"); in TEST_P() 4761 glGetProgramResourceIndex(program.get(), GL_UNIFORM, resourceName.str().c_str()); in TEST_P() 4763 glGetProgramResourceiv(program.get(), GL_UNIFORM, resourceIndex, 2, &resourceProps[0], 2, in TEST_P()
|
/external/deqp/external/openglcts/modules/glesext/tessellation_shader/ |
D | esextcTessellationShaderProgramInterfaces.cpp | 333 GL_UNIFORM, GL_UNIFORM_BLOCK, GL_ATOMIC_COUNTER_BUFFER, GL_SHADER_STORAGE_BLOCK, in iterate() 363 case GL_UNIFORM: in iterate()
|
/external/angle/src/libANGLE/ |
D | validationES31.cpp | 36 case GL_UNIFORM: in ValidateNamedProgramInterface() 53 case GL_UNIFORM: in ValidateLocationProgramInterface() 152 case GL_UNIFORM: in ValidateProgramResourcePropertyByInterface() 167 case GL_UNIFORM: in ValidateProgramResourcePropertyByInterface() 176 if (programInterface == GL_UNIFORM) in ValidateProgramResourcePropertyByInterface() 217 case GL_UNIFORM: in ValidateProgramResourcePropertyByInterface() 238 case GL_UNIFORM: in ValidateProgramResourcePropertyByInterface() 264 case GL_UNIFORM: in ValidateProgramResourcePropertyByInterface() 297 case GL_UNIFORM: in ValidateProgramResourceIndex()
|
D | queryutils.cpp | 844 case GL_UNIFORM: in QueryProgramInterfaceActiveResources() 892 case GL_UNIFORM: in QueryProgramInterfaceMaxNameLength() 2023 case GL_UNIFORM: in QueryProgramResourceIndex() 2062 case GL_UNIFORM: in QueryProgramResourceName() 2099 case GL_UNIFORM: in QueryProgramResourceLocation() 2148 case GL_UNIFORM: in QueryProgramResourceiv()
|
/external/deqp/framework/opengl/ |
D | gluProgramInterfaceQuery.cpp | 98 if (programInterface == GL_UNIFORM) in getProgramInterfaceVariableInfo()
|
D | gluStrUtil.inl | 1505 case GL_UNIFORM: return "GL_UNIFORM";
|
/external/deqp/modules/gles31/functional/ |
D | es31fBasicComputeShaderTests.cpp | 178 …const deUint32 valueIndex = gl.getProgramResourceIndex(program.getProgram(), GL_UNIFORM, "Input… in iterate() 179 …Info valueInfo = getProgramInterfaceVariableInfo(gl, program.getProgram(), GL_UNIFORM, valueIndex); in iterate() 1534 …const deUint32 uniformIndex = gl.getProgramResourceIndex(program.getProgram(), GL_UNIFORM, "u_coun… in iterate() 1535 …const deUint32 bufferIndex = getProgramResourceUint(gl, program.getProgram(), GL_UNIFORM, uniform… in iterate() 1567 …const deUint32 uniformIndex = gl.getProgramResourceIndex(program.getProgram(), GL_UNIFORM, "u_cou… in iterate() 1568 …const deUint32 uniformOffset = getProgramResourceUint(gl, program.getProgram(), GL_UNIFORM, unifo… in iterate() 1569 …const deUint32 bufferIndex = getProgramResourceUint(gl, program.getProgram(), GL_UNIFORM, unifor… in iterate()
|
D | es31fProgramInterfaceQueryTests.cpp | 151 GL_UNIFORM, // PROGRAMINTERFACE_UNIFORM in getProgramInterfaceGLEnum() 1472 …uniformIndex = gl.getProgramResourceIndex(program.getProgram(), GL_UNIFORM, "u_uniformWithALongNam… in iterate() 1524 …gl.getProgramResourceName(program.getProgram(), GL_UNIFORM, uniformIndex, querySizes[ndx].querySiz… in iterate() 1598 uniformIndex = gl.getProgramResourceIndex(program.getProgram(), GL_UNIFORM, "u_uniform"); in iterate() 1639 …gl.getProgramResourceiv(program.getProgram(), GL_UNIFORM, uniformIndex, querySizes[ndx].numProps, … in iterate() 1809 … glw::GLenum programMemberInterfaceValue = (m_storage == glu::STORAGE_UNIFORM) ? (GL_UNIFORM) : in iterate() 2466 …gl.getProgramResourceiv(program.getProgram(), GL_UNIFORM, activeVariables[ndx], 1, &nameLengthProp… in iterate() 2479 …gl.getProgramResourceName(program.getProgram(), GL_UNIFORM, activeVariables[ndx], (int)nameBuf.siz… in iterate()
|
D | es31fSSBOLayoutCase.cpp | 2614 const deUint32 numPassedLoc = gl.getProgramResourceIndex(program, GL_UNIFORM, "ac_numPassed"); in execute() 2615 …c != GL_INVALID_INDEX ? glu::getProgramInterfaceVariableInfo(gl, program, GL_UNIFORM, numPassedLoc) in execute()
|
/external/deqp/doc/testspecs/GLES31/ |
D | functional.program_interface_query.txt | 63 uniform.* and buffer_variable.* cases test GL_UNIFORM and
|
/external/deqp/external/openglcts/modules/glesext/texture_buffer/ |
D | esextcTextureBufferActiveUniformValidation.cpp | 343 gl.getProgramResourceiv(m_po_id, GL_UNIFORM, i /*index */, 1 /* parameters count */, in iterate()
|
/external/mesa3d/src/compiler/glsl/ |
D | serialize.cpp | 851 case GL_UNIFORM: in write_program_resource_data() 853 res->Type != GL_UNIFORM) { in write_program_resource_data() 949 case GL_UNIFORM: { in read_program_resource_data()
|
D | gl_nir_linker.c | 552 GLenum interface = uniform->is_shader_storage ? GL_BUFFER_VARIABLE : GL_UNIFORM; in nir_build_program_resource_list()
|
/external/angle/src/libANGLE/renderer/gl/ |
D | functionsgl_enums.h | 1299 #define GL_UNIFORM 0x92E1 macro
|
/external/mesa3d/docs/relnotes/ |
D | 10.6.0.rst | 322 value for GL_REFERENCED_BY_*_SHADER prop for GL_UNIFORM for members
|