/external/fonttools/Lib/fontTools/ttLib/tables/ |
H A D | BitmapGlyphMetrics.py | 35 for metricName in sstruct.getformat(self.__class__.binaryFormat)[1]: 42 metricNames = set(sstruct.getformat(self.__class__.binaryFormat)[1]) 55 binaryFormat = bigGlyphMetricsFormat variable in class:BigGlyphMetrics 58 binaryFormat = smallGlyphMetricsFormat variable in class:SmallGlyphMetrics
|
/external/fonttools/Tools/fontTools/ttLib/tables/ |
H A D | BitmapGlyphMetrics.py | 35 for metricName in sstruct.getformat(self.__class__.binaryFormat)[1]: 42 metricNames = set(sstruct.getformat(self.__class__.binaryFormat)[1]) 55 binaryFormat = bigGlyphMetricsFormat variable in class:BigGlyphMetrics 58 binaryFormat = smallGlyphMetricsFormat variable in class:SmallGlyphMetrics
|
/external/deqp/external/vulkancts/framework/vulkan/ |
H A D | vkPrograms.cpp | 105 ProgramBinary* buildProgram (const glu::ProgramSources& program, ProgramFormat binaryFormat, glu::ShaderProgramInfo* buildInfo) argument 109 if (binaryFormat == PROGRAM_FORMAT_SPIRV)
|
H A D | vkPrograms.hpp | 172 ProgramBinary* buildProgram (const glu::ProgramSources& program, ProgramFormat binaryFormat, glu::ShaderProgramInfo* buildInfo);
|
/external/deqp/modules/gles3/functional/ |
H A D | es3fNegativeShaderApiTests.cpp | 165 m_log << TestLog::Section("", "GL_INVALID_ENUM is generated if binaryFormat is not an accepted value."); 172 m_log << TestLog::Section("", "GL_INVALID_VALUE is generated if the data pointed to by binary does not match the format specified by binaryFormat."); 385 GLenum binaryFormat = -1; 399 glGetProgramBinary (program.getProgram(), 0, &binaryLength, &binaryFormat, &binaryPtr); 403 glGetProgramBinary (program.getProgram(), bufSize-1, &binaryLength, &binaryFormat, &binaryPtr); 416 glGetProgramBinary (programInvalid.getProgram(), bufSize, &binaryLength, &binaryFormat, &binaryPtr); 425 GLenum binaryFormat = -1; 441 glGetProgramBinary (srcProgram.getProgram(), bufSize, &binaryLength, &binaryFormat, &binaryBuf[0]); 445 glProgramBinary (dummyShader, binaryFormat, &binaryBuf[0], binaryLength); 449 m_log << TestLog::Section("", "GL_INVALID_ENUM is generated if binaryFormat i [all...] |
/external/mesa3d/include/GLES2/ |
H A D | gl2ext.h | 765 GL_APICALL void GL_APIENTRY glGetProgramBinaryOES (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, GLvoid *binary); 766 GL_APICALL void GL_APIENTRY glProgramBinaryOES (GLuint program, GLenum binaryFormat, const GLvoid *binary, GLint length); 768 typedef void (GL_APIENTRYP PFNGLGETPROGRAMBINARYOESPROC) (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, GLvoid *binary); 769 typedef void (GL_APIENTRYP PFNGLPROGRAMBINARYOESPROC) (GLuint program, GLenum binaryFormat, const GLvoid *binary, GLint length);
|
/external/deqp/framework/opengl/simplereference/ |
H A D | sglrContextWrapper.hpp | 290 void glGetProgramBinary (deUint32 program, int bufSize, int* length, deUint32* binaryFormat, void* binary); 291 void glProgramBinary (deUint32 program, deUint32 binaryFormat, const void* binary, int length);
|
/external/deqp/modules/gles31/functional/ |
H A D | es31fNegativeShaderApiTests.cpp | 192 ctx.beginSection("GL_INVALID_ENUM is generated if binaryFormat is not an accepted value."); 199 ctx.beginSection("GL_INVALID_VALUE is generated if the data pointed to by binary does not match the format specified by binaryFormat."); 469 GLenum binaryFormat = -1; local 483 ctx.glGetProgramBinary (program.getProgram(), 0, &binaryLength, &binaryFormat, &binaryPtr); 487 ctx.glGetProgramBinary (program.getProgram(), bufSize-1, &binaryLength, &binaryFormat, &binaryPtr); 500 ctx.glGetProgramBinary (programInvalid.getProgram(), bufSize, &binaryLength, &binaryFormat, &binaryPtr); 510 GLenum binaryFormat = -1; local 525 ctx.glGetProgramBinary (srcProgram.getProgram(), bufSize, &binaryLength, &binaryFormat, &binaryBuf[0]); 529 ctx.glProgramBinary (dummyShader, binaryFormat, &binaryBuf[0], binaryLength); 533 ctx.beginSection("GL_INVALID_ENUM is generated if binaryFormat i [all...] |
/external/deqp/framework/opengl/ |
H A D | gluCallLogWrapper.inl | 1733 void CallLogWrapper::glGetProgramBinary (glw::GLuint program, glw::GLsizei bufSize, glw::GLsizei *length, glw::GLenum *binaryFormat, void *binary) 1736 m_log << TestLog::Message << "glGetProgramBinary(" << program << ", " << bufSize << ", " << toHex(reinterpret_cast<deUintptr>(static_cast<const void*>(length))) << ", " << toHex(reinterpret_cast<deUintptr>(static_cast<const void*>(binaryFormat))) << ", " << binary << ");" << TestLog::EndMessage; 1737 m_gl.getProgramBinary(program, bufSize, length, binaryFormat, binary); 2907 void CallLogWrapper::glProgramBinary (glw::GLuint program, glw::GLenum binaryFormat, const void *binary, glw::GLsizei length) 2910 m_log << TestLog::Message << "glProgramBinary(" << program << ", " << toHex(binaryFormat) << ", " << binary << ", " << length << ");" << TestLog::EndMessage; 2911 m_gl.programBinary(program, binaryFormat, binary, length);
|
H A D | gluCallLogWrapperApi.inl | 240 void glGetProgramBinary (glw::GLuint program, glw::GLsizei bufSize, glw::GLsizei *length, glw::GLenum *binaryFormat, void *binary); 388 void glProgramBinary (glw::GLuint program, glw::GLenum binaryFormat, const void *binary, glw::GLsizei length);
|
/external/deqp/framework/opengl/wrapper/ |
H A D | glwApi.inl | 900 void glwGetProgramBinary (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary); 1048 void glwProgramBinary (GLuint program, GLenum binaryFormat, const void *binary, GLsizei length);
|
H A D | glwFunctionTypes.inl | 240 typedef GLW_APICALL void (GLW_APIENTRY* glGetProgramBinaryFunc) (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary); 388 typedef GLW_APICALL void (GLW_APIENTRY* glProgramBinaryFunc) (GLuint program, GLenum binaryFormat, const void *binary, GLsizei length);
|
H A D | glwImpl.inl | 1879 void glwGetProgramBinary (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary) 1884 gl->getProgramBinary(program, bufSize, length, binaryFormat, binary); 3063 void glwProgramBinary (GLuint program, GLenum binaryFormat, const void *binary, GLsizei length) 3068 gl->programBinary(program, binaryFormat, binary, length);
|
/external/libgdx/backends/gdx-backend-lwjgl3/libs/ |
H A D | lwjgl.jar | META-INF/ META-INF/MANIFEST.MF org/ org/lwjgl/ org/lwjgl/egl/ org/lwjgl/glfw/ org/ ... |
/external/deqp/framework/platform/null/ |
H A D | tcuNullRenderContextFuncs.inl | 1868 GLW_APICALL void GLW_APIENTRY glGetProgramBinary (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary) 1873 DE_UNREF(binaryFormat); 3061 GLW_APICALL void GLW_APIENTRY glProgramBinary (GLuint program, GLenum binaryFormat, const void *binary, GLsizei length) 3064 DE_UNREF(binaryFormat);
|
/external/mesa3d/include/GL/ |
H A D | glext.h | 8214 GLAPI void APIENTRY glGetProgramBinary (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, GLvoid *binary); 8215 GLAPI void APIENTRY glProgramBinary (GLuint program, GLenum binaryFormat, const GLvoid *binary, GLsizei length); 8218 typedef void (APIENTRYP PFNGLGETPROGRAMBINARYPROC) (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, GLvoid *binary); 8219 typedef void (APIENTRYP PFNGLPROGRAMBINARYPROC) (GLuint program, GLenum binaryFormat, const GLvoid *binary, GLsizei length);
|
/external/libgdx/backends/gdx-backend-lwjgl/libs/ |
H A D | lwjgl.jar | META-INF/ META-INF/MANIFEST.MF org/ org/lwjgl/ org/lwjgl/input/ org/lwjgl/openal/ org/ ... |
/external/libgdx/extensions/gdx-bullet/jni/vs/Glut/GL/ |
H A D | glew.h | 3549 typedef void (GLAPIENTRY * PFNGLGETPROGRAMBINARYPROC) (GLuint program, GLsizei bufSize, GLsizei* length, GLenum *binaryFormat, GLvoid*binary); 3550 typedef void (GLAPIENTRY * PFNGLPROGRAMBINARYPROC) (GLuint program, GLenum binaryFormat, const void* binary, GLsizei length);
|