Home
last modified time | relevance | path

Searched refs:numFormats (Results 1 – 13 of 13) sorted by relevance

/external/deqp/modules/gles2/functional/
Des2fApiCase.cpp104 deInt32 numFormats; in getSupportedExtensions() local
105 GLU_CHECK_CALL(glGetIntegerv(numSupportedValues, &numFormats)); in getSupportedExtensions()
106 if (numFormats == 0) in getSupportedExtensions()
111 values.resize(numFormats); in getSupportedExtensions()
/external/deqp/modules/gles3/functional/
Des3fApiCase.cpp106 deInt32 numFormats; in getSupportedExtensions() local
107 GLU_CHECK_CALL(glGetIntegerv(numSupportedValues, &numFormats)); in getSupportedExtensions()
108 if (numFormats == 0) in getSupportedExtensions()
113 values.resize(numFormats); in getSupportedExtensions()
Des3fImplementationLimitTests.cpp289 const GLint numFormats = query<GLint>(gl, GL_NUM_COMPRESSED_TEXTURE_FORMATS); in iterate() local
290 vector<GLint> formats (numFormats); in iterate()
293 if (numFormats > 0) in iterate()
Des3fShaderApiTests.cpp1134 GLint numFormats = -1; in getBinaryFormats() local
1135 glGetIntegerv(GL_NUM_PROGRAM_BINARY_FORMATS, &numFormats); in getBinaryFormats()
1139 if (numFormats > 0) in getBinaryFormats()
1141 out.resize(numFormats, 0); in getBinaryFormats()
/external/deqp/external/vulkancts/framework/vulkan/
DvkWsiUtil.cpp277 deUint32 numFormats = 0; in getPhysicalDeviceSurfaceFormats() local
279 VK_CHECK(vki.getPhysicalDeviceSurfaceFormatsKHR(physicalDevice, surface, &numFormats, DE_NULL)); in getPhysicalDeviceSurfaceFormats()
281 if (numFormats > 0) in getPhysicalDeviceSurfaceFormats()
283 std::vector<VkSurfaceFormatKHR> formats (numFormats); in getPhysicalDeviceSurfaceFormats()
285 …VK_CHECK(vki.getPhysicalDeviceSurfaceFormatsKHR(physicalDevice, surface, &numFormats, &formats[0])… in getPhysicalDeviceSurfaceFormats()
/external/deqp/framework/opengl/
DgluContextInfo.cpp168 int numFormats = 0; in operator ()() local
169 gl.getIntegerv(GL_NUM_COMPRESSED_TEXTURE_FORMATS, &numFormats); in operator ()()
171 vector<int> formats(numFormats); in operator ()()
172 if (numFormats > 0) in operator ()()
/external/lzma/CPP/7zip/Archive/
DArchiveExports.cpp136 STDAPI GetNumberOfFormats(UINT32 *numFormats) in GetNumberOfFormats() argument
138 *numFormats = g_NumArcs; in GetNumberOfFormats()
DIArchive.h465 typedef HRESULT (WINAPI *Func_GetNumberOfFormats)(UInt32 *numFormats);
/external/skia/src/gpu/gl/
DGrGLCaps.cpp1581 GrGLint numFormats; in initConfigTable() local
1582 GR_GL_GetIntegerv(gli, GR_GL_NUM_COMPRESSED_TEXTURE_FORMATS, &numFormats); in initConfigTable()
1583 if (numFormats) { in initConfigTable()
1584 SkAutoSTMalloc<10, GrGLint> formats(numFormats); in initConfigTable()
1586 for (int i = 0; i < numFormats; ++i) { in initConfigTable()
/external/lzma/CPP/7zip/UI/Common/
DLoadCodecs.cpp337 UInt32 numFormats = 1; in LoadFormats() local
344 RINOK(getNumberOfFormats(&numFormats)); in LoadFormats()
354 for (UInt32 i = 0; i < numFormats; i++) in LoadFormats()
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineEarlyFragmentTests.cpp716 const deUint32 numFormats, in pickSupportedDepthStencilFormat() argument
719 for (deUint32 i = 0; i < numFormats; ++i) in pickSupportedDepthStencilFormat()
/external/deqp/modules/gles31/functional/
Des31fNegativeShaderApiTests.cpp166 deInt32 numFormats = 0x1234; in shader_binary() local
167 ctx.glGetIntegerv(GL_NUM_SHADER_BINARY_FORMATS, &numFormats); in shader_binary()
169 if (numFormats == 0) in shader_binary()
173 binaryFormats.resize(numFormats); in shader_binary()
/external/opencv3/modules/core/src/
Docl.cpp5566 cl_uint numFormats = 0; in isFormatSupported() local
5568 CL_MEM_OBJECT_IMAGE2D, numFormats, in isFormatSupported()
5569 NULL, &numFormats); in isFormatSupported()
5570 AutoBuffer<cl_image_format> formats(numFormats); in isFormatSupported()
5572 CL_MEM_OBJECT_IMAGE2D, numFormats, in isFormatSupported()
5575 for (cl_uint i = 0; i < numFormats; ++i) in isFormatSupported()