HomeSort by relevance Sort by last modified time
    Searched defs:numFormats (Results 1 - 9 of 9) sorted by null

  /external/deqp/modules/gles2/functional/
es2fApiCase.cpp 99 deInt32 numFormats;
100 GLU_CHECK_CALL(glGetIntegerv(numSupportedValues, &numFormats));
101 if (numFormats == 0)
106 values.resize(numFormats);
  /external/deqp/modules/gles3/functional/
es3fApiCase.cpp 101 deInt32 numFormats;
102 GLU_CHECK_CALL(glGetIntegerv(numSupportedValues, &numFormats));
103 if (numFormats == 0)
108 values.resize(numFormats);
es3fImplementationLimitTests.cpp 289 const GLint numFormats = query<GLint>(gl, GL_NUM_COMPRESSED_TEXTURE_FORMATS);
290 vector<GLint> formats (numFormats);
293 if (numFormats > 0)
es3fShaderApiTests.cpp 1134 GLint numFormats = -1;
1135 glGetIntegerv(GL_NUM_PROGRAM_BINARY_FORMATS, &numFormats);
1139 if (numFormats > 0)
1141 out.resize(numFormats, 0);
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGLCaps.cpp 487 GrGLint numFormats;
488 GR_GL_GetIntegerv(gli, GR_GL_NUM_COMPRESSED_TEXTURE_FORMATS, &numFormats);
489 if (numFormats) {
490 SkAutoSTMalloc<10, GrGLint> formats(numFormats);
492 for (int i = 0; i < numFormats; ++i) {
    [all...]
  /external/deqp/framework/opengl/
gluContextInfo.cpp 199 int numFormats = 0;
200 gl.getIntegerv(GL_NUM_COMPRESSED_TEXTURE_FORMATS, &numFormats);
202 vector<int> formats(numFormats);
203 if (numFormats > 0)
  /external/deqp/modules/gles31/functional/
es31fNegativeShaderApiTests.cpp 153 deInt32 numFormats = 0x1234;
154 ctx.glGetIntegerv(GL_NUM_SHADER_BINARY_FORMATS, &numFormats);
156 if (numFormats == 0)
160 binaryFormats.resize(numFormats);
    [all...]
  /external/lzma/CPP/7zip/UI/Common/
LoadCodecs.cpp 88 typedef UInt32 (WINAPI *GetNumberOfFormatsFunc)(UInt32 *numFormats);
248 UInt32 numFormats = 1;
252 RINOK(getNumberOfFormats(&numFormats));
255 numFormats = 1;
257 for(UInt32 i = 0; i < numFormats; i++)
  /device/generic/goldfish/camera/
EmulatedFakeCamera2.cpp 362 unsigned int numFormats = sizeof(kAvailableFormats) / sizeof(uint32_t);
365 for (; formatIdx < numFormats; formatIdx++) {
368 if (formatIdx == numFormats) {
    [all...]

Completed in 1220 milliseconds