Home
last modified time | relevance | path

Searched refs:sRow (Results 1 – 4 of 4) sorted by relevance

/third_party/mesa3d/src/mesa/swrast/
Ds_depth.c828 GLuint *sRow = (GLuint *) map; in _swrast_clear_depth_stencil_buffer() local
834 sRow[j * 2 + 1] = (sRow[j * 2 + 1] & sMask) | sClear; in _swrast_clear_depth_stencil_buffer()
839 sRow[j * 2 + 1] = sClear; in _swrast_clear_depth_stencil_buffer()
/third_party/vk-gl-cts/framework/opengl/
DgluTextureTestUtil.cpp1146 int sRow = 0; in computeQuadTexCoordCube() local
1155 …case tcu::CUBEFACE_NEGATIVE_X: mRow = 0; sRow = 2; tRow = 1; mSign = -1.0f; tSign = -1.0f; b… in computeQuadTexCoordCube()
1156 …case tcu::CUBEFACE_POSITIVE_X: mRow = 0; sRow = 2; tRow = 1; sSign = -1.0f; tSign = -1.0f; brea… in computeQuadTexCoordCube()
1157 …case tcu::CUBEFACE_NEGATIVE_Y: mRow = 1; sRow = 0; tRow = 2; mSign = -1.0f; tSign = -1.0f; b… in computeQuadTexCoordCube()
1158 case tcu::CUBEFACE_POSITIVE_Y: mRow = 1; sRow = 0; tRow = 2; break; in computeQuadTexCoordCube()
1159 …case tcu::CUBEFACE_NEGATIVE_Z: mRow = 2; sRow = 0; tRow = 1; mSign = -1.0f; sSign = -1.0f; tSign =… in computeQuadTexCoordCube()
1160 case tcu::CUBEFACE_POSITIVE_Z: mRow = 2; sRow = 0; tRow = 1; tSign = -1.0f; break; in computeQuadTexCoordCube()
1173 dst[0+sRow] = sSign * bottomLeft.x(); in computeQuadTexCoordCube()
1174 dst[3+sRow] = sSign * bottomLeft.x(); in computeQuadTexCoordCube()
1175 dst[6+sRow] = sSign * topRight.x(); in computeQuadTexCoordCube()
[all …]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderrender/
DvktShaderRenderTextureGatherTests.cpp125 int sRow = 0; in computeQuadTexCoordCube() local
134 …case tcu::CUBEFACE_NEGATIVE_X: mRow = 0; sRow = 2; tRow = 1; mSign = -1.0f; tSign = -1.0f; b… in computeQuadTexCoordCube()
135 …case tcu::CUBEFACE_POSITIVE_X: mRow = 0; sRow = 2; tRow = 1; sSign = -1.0f; tSign = -1.0f; brea… in computeQuadTexCoordCube()
136 …case tcu::CUBEFACE_NEGATIVE_Y: mRow = 1; sRow = 0; tRow = 2; mSign = -1.0f; tSign = -1.0f; b… in computeQuadTexCoordCube()
137 case tcu::CUBEFACE_POSITIVE_Y: mRow = 1; sRow = 0; tRow = 2; break; in computeQuadTexCoordCube()
138 …case tcu::CUBEFACE_NEGATIVE_Z: mRow = 2; sRow = 0; tRow = 1; mSign = -1.0f; sSign = -1.0f; tSign =… in computeQuadTexCoordCube()
139 case tcu::CUBEFACE_POSITIVE_Z: mRow = 2; sRow = 0; tRow = 1; tSign = -1.0f; break; in computeQuadTexCoordCube()
152 dst[0+sRow] = sSign * bottomLeft.x(); in computeQuadTexCoordCube()
153 dst[3+sRow] = sSign * bottomLeft.x(); in computeQuadTexCoordCube()
154 dst[6+sRow] = sSign * topRight.x(); in computeQuadTexCoordCube()
[all …]
/third_party/skia/src/gpu/
DGrDataUtils.cpp551 auto* sRow = reinterpret_cast<const char*>(src.addr()); in GrConvertPixels() local
553 for (int y = 0; y < src.height(); ++y, sRow += src.rowBytes(), tRow += temp.rowBytes()) { in GrConvertPixels()
555 auto s = sRow + x*3; in GrConvertPixels()