Lines Matching defs:dst
232 void drawFbo (const Context& ctx, GLuint fbo, Surface& dst)
241 dst.setSize(FRAMEBUFFER_SIZE, FRAMEBUFFER_SIZE);
242 glu::readPixels(renderCtx, 0, 0, dst.getAccess());
299 void FboInputAttacher::drawContainer (GLuint fbo, Surface& dst)
301 drawFbo(getContext(), fbo, dst);
315 void FboOutputAttacher::drawAttachment (GLuint element, Surface& dst)
320 drawFbo(getContext(), *fbo, dst);
651 void readRectangle (const RenderContext& renderCtx, const Rectangle& rect, Surface& dst)
653 dst.setSize(rect.width, rect.height);
654 glu::readPixels(renderCtx, rect.x, rect.y, dst.getAccess());
669 void ShaderProgramInputAttacher::drawContainer (GLuint program, Surface& dst)
711 readRectangle(getRenderContext(), viewport, dst);