Home | History | Annotate | Download | only in shaderrender

Lines Matching defs:access

23  * \brief Texture access and query function tests.
925 const tcu::PixelBufferAccess access = textureCube->getLevelFace(level, (tcu::CubeFace)face);
926 const int lastPix = access.getWidth()-1;
928 tcu::fillWithGrid(access, de::max(1, baseCellSize>>level), colorA, colorB);
931 access.setPixel(cCorner, 0, 0);
932 access.setPixel(cCorner, 0, lastPix);
933 access.setPixel(cCorner, lastPix, 0);
934 access.setPixel(cCorner, lastPix, lastPix);
1128 const tcu::PixelBufferAccess access = tcu::getSubregion(levelAccess, 0, 0, (layer*6)+face, levelAccess.getWidth(), levelAccess.getHeight(), 1);
1129 const int lastPix = access.getWidth()-1;
1131 tcu::fillWithGrid(access, de::max(1, baseCellSize>>level), colorA, colorB);
1134 access.setPixel(cCorner, 0, 0);
1135 access.setPixel(cCorner, 0, lastPix);
1136 access.setPixel(cCorner, lastPix, 0);
1137 access.setPixel(cCorner, lastPix, lastPix);
2862 : TestCaseGroup(context, "texture_functions", "Texture Access Function Tests")