HomeSort by relevance Sort by last modified time
    Searched refs:binaryFormat (Results 1 - 25 of 58) sorted by null

1 2 3

  /external/fonttools/Lib/fontTools/ttLib/tables/
BitmapGlyphMetrics.py 35 for metricName in sstruct.getformat(self.__class__.binaryFormat)[1]:
42 metricNames = set(sstruct.getformat(self.__class__.binaryFormat)[1])
55 binaryFormat = bigGlyphMetricsFormat
58 binaryFormat = smallGlyphMetricsFormat
  /external/skia/src/gpu/gl/builders/
GrGLProgramBuilder.cpp 168 int binaryFormat;
169 memcpy(&binaryFormat, bytes + offset, sizeof(binaryFormat));
170 offset += sizeof(binaryFormat);
173 ProgramBinary(programID, binaryFormat, (void*) (bytes + offset),
287 GrGLenum binaryFormat;
289 GL_CALL(GetProgramBinary(programID, length, &length, &binaryFormat, binary.get()));
290 size_t dataLength = sizeof(inputs) + sizeof(binaryFormat) + length;
295 memcpy(data.get() + offset, &binaryFormat, sizeof(binaryFormat));
    [all...]
  /external/skqp/src/gpu/gl/builders/
GrGLProgramBuilder.cpp 170 int binaryFormat;
171 memcpy(&binaryFormat, bytes + offset, sizeof(binaryFormat));
172 offset += sizeof(binaryFormat);
173 GL_CALL(ProgramBinary(programID, binaryFormat, (void*) (bytes + offset),
278 GrGLenum binaryFormat;
280 GL_CALL(GetProgramBinary(programID, length, &length, &binaryFormat, binary.get()));
281 size_t dataLength = sizeof(inputs) + sizeof(binaryFormat) + length;
286 memcpy(data.get() + offset, &binaryFormat, sizeof(binaryFormat));
    [all...]
  /external/mesa3d/src/mesa/main/
shaderapi.h 201 _mesa_ShaderBinary(GLint n, const GLuint *shaders, GLenum binaryformat,
206 GLenum *binaryFormat, GLvoid *binary);
209 _mesa_ProgramBinary(GLuint program, GLenum binaryFormat,
shaderapi.c     [all...]
  /frameworks/native/opengl/tools/glgen/specs/gles11/
GLES30.spec 103 void glGetProgramBinary ( GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, GLvoid *binary )
104 void glProgramBinary ( GLuint program, GLenum binaryFormat, const GLvoid *binary, GLsizei length )
  /frameworks/base/opengl/java/android/opengl/
GLES30.java     [all...]
  /external/deqp/modules/gles3/functional/
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 is not a value recognized by the implementation.")
    [all...]
  /device/generic/goldfish-opengl/system/GLESv2_enc/
gl2_entry.cpp 105 void glShaderBinary(GLsizei n, const GLuint* shaders, GLenum binaryformat, const GLvoid* binary, GLsizei length);
152 void glGetProgramBinaryOES(GLuint program, GLsizei bufSize, GLsizei* length, GLenum* binaryFormat, GLvoid* binary);
153 void glProgramBinaryOES(GLuint program, GLenum binaryFormat, const GLvoid* binary, GLint length);
329 void glProgramBinary(GLuint program, GLenum binaryFormat, const void* binary, GLsizei length);
330 void glGetProgramBinary(GLuint program, GLsizei bufSize, GLsizei* length, GLenum* binaryFormat, void* binary);
    [all...]
  /external/deqp/framework/opengl/simplereference/
sglrContextWrapper.hpp 147 void glShaderBinary (int n, const deUint32* shaders, deUint32 binaryformat, const void* binary, int length);
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/skia/include/gpu/gl/
GrGLFunctions.h 93 typedef GrGLvoid (* GrGLGetProgramBinaryProc)(GrGLuint program, GrGLsizei bufsize, GrGLsizei* length, GrGLenum *binaryFormat, void *binary);
126 typedef GrGLvoid (* GrGLProgramBinaryProc)(GrGLuint program, GrGLenum binaryFormat, void *binary, GrGLsizei length);
  /prebuilts/ndk/r16/sources/android/ndk_helper/
gl3stub.c 478 GLenum* binaryFormat,
481 GLenum binaryFormat,
gl3stub.h     [all...]
  /external/deqp/modules/gles31/functional/
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;
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;
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 is not a value recognized by the implementation.")
    [all...]
  /external/swiftshader/third_party/PowerVR_SDK/Builds/Include/GLES2/
gl2ext.h     [all...]
  /frameworks/base/core/jni/
android_opengl_GLES30.cpp     [all...]
  /external/swiftshader/src/OpenGL/libGLESv2/
libGLESv3.cpp     [all...]
  /device/generic/goldfish-opengl/system/include/GLES3/
gl3.h 474 GL_APICALL void GL_APIENTRY glShaderBinary (GLsizei count, const GLuint *shaders, GLenum binaryformat, const void *binary, GLsizei length);
    [all...]
  /external/skia/src/gpu/gl/
GrGLTestInterface.h     [all...]
  /external/skqp/include/gpu/gl/
GrGLFunctions.h 94 typedef GrGLvoid (* GrGLGetProgramBinaryProc)(GrGLuint program, GrGLsizei bufsize, GrGLsizei* length, GrGLenum *binaryFormat, void *binary);
129 typedef GrGLvoid (* GrGLProgramBinaryProc)(GrGLuint program, GrGLenum binaryFormat, void *binary, GrGLsizei length);
    [all...]
  /external/skqp/src/gpu/gl/
GrGLTestInterface.h     [all...]
  /external/swiftshader/third_party/PowerVR_SDK/Builds/Include/GLES3/
gl3.h     [all...]
  /device/generic/goldfish-opengl/system/include/GLES2/
gl2ext.h 253 typedef void (GL_APIENTRYP PFNGLGETPROGRAMBINARYOESPROC) (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary);
254 typedef void (GL_APIENTRYP PFNGLPROGRAMBINARYOESPROC) (GLuint program, GLenum binaryFormat, const void *binary, GLint length);
256 GL_APICALL void GL_APIENTRY glGetProgramBinaryOES (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary);
257 GL_APICALL void GL_APIENTRY glProgramBinaryOES (GLuint program, GLenum binaryFormat, const void *binary, GLint length);
    [all...]
  /external/mesa3d/include/GLES3/
gl3.h 478 typedef void (GL_APIENTRYP PFNGLSHADERBINARYPROC) (GLsizei count, const GLuint *shaders, GLenum binaryformat, const void *binary, GLsizei length);
    [all...]
gl31.h 478 typedef void (GL_APIENTRYP PFNGLSHADERBINARYPROC) (GLsizei count, const GLuint *shaders, GLenum binaryformat, const void *binary, GLsizei length);
    [all...]

Completed in 1131 milliseconds

1 2 3