Home
last modified time | relevance | path

Searched refs:maxPointSize (Results 1 – 11 of 11) sorted by relevance

/external/angle/src/tests/gl_tests/
DPointSpritesTest.cpp52 GLfloat maxPointSize = pointSizeRange[1]; in testPointCoordAndPointSizeCompliance() local
54 ASSERT_TRUE(maxPointSize >= 1); in testPointCoordAndPointSizeCompliance()
55 maxPointSize = floorf(maxPointSize); in testPointCoordAndPointSizeCompliance()
56 ASSERT_TRUE((int)maxPointSize % 1 == 0); in testPointCoordAndPointSizeCompliance()
58 maxPointSize = std::min(maxPointSize, 64.0f); in testPointCoordAndPointSizeCompliance()
59 GLfloat pointWidth = maxPointSize / windowWidth; in testPointCoordAndPointSizeCompliance()
60 GLint step = static_cast<GLint>(floorf(maxPointSize / 4)); in testPointCoordAndPointSizeCompliance()
66 glUniform1f(pointSizeLoc, maxPointSize); in testPointCoordAndPointSizeCompliance()
69 GLfloat pixelOffset = ((int)maxPointSize % 2) ? (1.0f / (GLfloat)windowWidth) : 0; in testPointCoordAndPointSizeCompliance()
96 for (int yy = 0; yy < maxPointSize; yy += pointStep) in testPointCoordAndPointSizeCompliance()
[all …]
/external/angle/src/compiler/translator/tree_ops/
DClampPointSize.cpp22 float maxPointSize, in ClampPointSize() argument
34 maxPointSizeConstant->setFConst(maxPointSize); in ClampPointSize()
DClampPointSize.h23 float maxPointSize,
/external/mesa3d/src/gallium/drivers/svga/
Dsvga_screen.c164 return svgascreen->maxPointSize; in svga_get_paramf()
1021 svgascreen->maxPointSize = 80.0F; in svga_screen_create()
1067 svgascreen->maxPointSize = in svga_screen_create()
1070 svgascreen->maxPointSize = MIN2(svgascreen->maxPointSize, 80.0f); in svga_screen_create()
1105 debug_printf("svga: maxPointSize %g\n", svgascreen->maxPointSize); in svga_screen_create()
Dsvga_screen.h55 float maxPointSize; member
Dsvga_state_rss.c244 EMIT_RS_FLOAT(svga, screen->maxPointSize, POINTSIZEMAX); in emit_rss_vgpu9()
Dsvga_state_constants.c160 dst[3] = screen->maxPointSize; in svga_get_pt_sprite_constants()
/external/skqp/include/core/
DSkGraphics.h97 static int SetFontCachePointSizeLimit(int maxPointSize);
/external/deqp/external/vulkancts/modules/vulkan/tessellation/
DvktTessellationGeometryPointSizeTests.cpp70 …uirements (const InstanceInterface& vki, const VkPhysicalDevice physDevice, const int maxPointSize) in checkPointSizeRequirements() argument
73 if (maxPointSize > static_cast<int>(properties.limits.pointSizeRange[1])) in checkPointSizeRequirements()
74 throw tcu::NotSupportedError("Test requires point size " + de::toString(maxPointSize)); in checkPointSizeRequirements()
/external/deqp/modules/gles31/functional/
Des31fShaderHelperInvocationTests.cpp166 const float maxPointSize = 32.0f; in drawRandomPrimitives() local
183 …const float pointSize = isWidePoint ? de::min(rnd->getFloat(minPointSize, maxPointSize), range.y… in drawRandomPrimitives()
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/
DvktShaderRenderBuiltinVarTests.cpp1908 const float maxPointSize = limits.pointSizeRange[1]; in iterate() local
1909 …const int pointSizeDeltaMultiples = de::max(1, deCeilFloatToInt32((maxPointSize - minPointSiz… in iterate()
1911 TCU_CHECK(minPointSize <= maxPointSize); in iterate()
1917 …coord->z() = de::min(maxPointSize, minPointSize + float(rnd.getInt(0, pointSizeDeltaMultiples)) * … in iterate()