Lines Matching defs:dst
379 void renderTex2D (tcu::Surface& dst, int width, int height);
380 void renderTexCube (tcu::Surface& dst, int width, int height, tcu::CubeFace face);
382 void readPixels (tcu::Surface& dst, int x, int y, int width, int height);
566 void TextureSpecCase::renderTex2D (tcu::Surface& dst, int width, int height)
580 readPixels(dst, 0, 0, width, height);
583 void TextureSpecCase::renderTexCube (tcu::Surface& dst, int width, int height, tcu::CubeFace face)
607 readPixels(dst, 0, 0, width, height);
610 void TextureSpecCase::readPixels (tcu::Surface& dst, int x, int y, int width, int height)
612 dst.setSize(width, height);
613 glReadPixels(x, y, width, height, GL_RGBA, GL_UNSIGNED_BYTE, dst.getAccess().getDataPtr());