Home
last modified time | relevance | path

Searched refs:texCoordY (Results 1 – 3 of 3) sorted by relevance

/third_party/skia/third_party/externals/angle2/src/compiler/translator/
DTextureFunctionHLSL.cpp72 ImmutableString *texCoordY, in OutputIntTexCoordWraps() argument
89 OutputIntTexCoordWrap(out, "wrapT", "height", *texCoordY, "offset.y", "tiy"); in OutputIntTexCoordWraps()
93 OutputIntTexCoordWrap(out, "wrapT", "height", *texCoordY, "0", "tiy"); in OutputIntTexCoordWraps()
95 *texCoordY = ImmutableString("tiy"); in OutputIntTexCoordWraps()
573 ImmutableString *texCoordY, in ProjectTextureCoordinates() argument
593 ImmutableStringBuilder texCoordYBuilder(texCoordY->length() + proj.length() + 2u); in ProjectTextureCoordinates()
594 texCoordYBuilder << '(' << *texCoordY << proj << ')'; in ProjectTextureCoordinates()
595 *texCoordY = texCoordYBuilder; in ProjectTextureCoordinates()
608 ImmutableString *texCoordY, in OutputIntegerTextureSampleFunctionComputations() argument
784 texCoordYBuilder << kYPrefix << *texCoordY << kSuffix; in OutputIntegerTextureSampleFunctionComputations()
[all …]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineSamplerTests.cpp1282 std::string texCoordY = "inTexCoord.y"; in initPrograms() local
1287 texCoordY += " * pushc.texHeight"; in initPrograms()
1306 << " fragTexCoord = vec2(" << texCoordX << ", " << texCoordY << ");\n" in initPrograms()
/third_party/vk-gl-cts/modules/gles3/stress/
Des3sSpecialFloatTests.cpp1179 const float texCoordY = deFloatPow(2.0f, (float)y - (float)gridSize / 2.0f); in iterate() local
1182 gridTexCoords[x * gridSize + y] = tcu::Vec2(texCoordX, texCoordY); in iterate()