Home
last modified time | relevance | path

Searched refs:maxTextureUnits (Results 1 – 10 of 10) sorted by relevance

/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/gles1/
DClientActiveTextureTest.cpp48 GLint maxTextureUnits = 0; in TEST_P() local
49 glGetIntegerv(GL_MAX_TEXTURE_UNITS, &maxTextureUnits); in TEST_P()
51 glClientActiveTexture(GL_TEXTURE0 + maxTextureUnits); in TEST_P()
58 GLint maxTextureUnits = 0; in TEST_P() local
59 glGetIntegerv(GL_MAX_TEXTURE_UNITS, &maxTextureUnits); in TEST_P()
60 EXPECT_GE(maxTextureUnits, 2); in TEST_P()
66 GLint maxTextureUnits = 0; in TEST_P() local
67 glGetIntegerv(GL_MAX_TEXTURE_UNITS, &maxTextureUnits); in TEST_P()
69 for (GLint i = 0; i < maxTextureUnits; i++) in TEST_P()
DVertexPointerTest.cpp56 GLint maxTextureUnits; in TEST_P() local
57 glGetIntegerv(GL_MAX_TEXTURE_UNITS, &maxTextureUnits); in TEST_P()
58 for (int i = 0; i < maxTextureUnits; i++) in TEST_P()
/third_party/skia/third_party/externals/angle2/src/tests/perf_tests/
DTexturesPerf.cpp147 GLint maxTextureUnits; in initializeBenchmark() local
148 glGetIntegerv(GL_MAX_TEXTURE_IMAGE_UNITS, &maxTextureUnits); in initializeBenchmark()
149 if (params.numTextures > static_cast<size_t>(maxTextureUnits)) in initializeBenchmark()
152 << " exceeds maximum texture unit count: " << maxTextureUnits << std::endl; in initializeBenchmark()
/third_party/glslang/glslang/Include/
DResourceLimits.h55 int maxTextureUnits; member
/third_party/glslang/glslang/ResourceLimits/
DResourceLimits.cpp166 … << "MaxTextureUnits " << DefaultTBuiltInResource.maxTextureUnits << "\n" in GetDefaultTBuiltInResourceString()
311 resources->maxTextureUnits = value; in DecodeResourceLimits()
/third_party/vk-gl-cts/external/openglcts/modules/common/
DglcSpirvUtils.cpp104 builtin->maxTextureUnits = 32; in getDefaultBuiltInResources()
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
DvkShaderToSpirV.cpp115 builtin->maxTextureUnits = 32; in getDefaultBuiltInResources()
/third_party/skia/third_party/externals/angle2/src/tests/test_utils/third_party/
Dvulkan_command_buffer_utils.h369 Resources.maxTextureUnits = 32; in init_resources()
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/
DTextureTest.cpp6050 GLint maxTextureUnits = 0; in TEST_P() local
6051 glGetIntegerv(GL_MAX_TEXTURE_IMAGE_UNITS, &maxTextureUnits); in TEST_P()
6052 ANGLE_SKIP_TEST_IF(maxTextureUnits < 4); in TEST_P()
8557 GLint maxTextureUnits = 0; in TEST_P() local
8558 glGetIntegerv(GL_MAX_TEXTURE_IMAGE_UNITS, &maxTextureUnits); in TEST_P()
8559 ANGLE_SKIP_TEST_IF(maxTextureUnits < 4); in TEST_P()
/third_party/glslang/glslang/MachineIndependent/
DInitialize.cpp7426 …printf(builtInConstant, maxSize, "const int gl_MaxTextureUnits = %d;", resources.maxTextureUnits); in initialize()