Lines Matching defs:offset
60 // Setup base viewport. This offset is active when default framebuffer is active.
166 tcu::IVec2 offset = getDrawOffset();
168 // \note For clarity don't add the offset to log
171 m_context.getFunctions().viewport(x+offset.x(), y+offset.y(), width, height);
220 tcu::IVec2 offset = getDrawOffset();
221 m_context.getFunctions().viewport(m_curViewport.x()+offset.x(), m_curViewport.y()+offset.y(), m_curViewport.z(), m_curViewport.w());
222 m_context.getFunctions().scissor(m_curScissor.x()+offset.x(), m_curScissor.y()+offset.y(), m_curScissor.z(), m_curScissor.w());
297 // Don't log offset.
307 tcu::IVec2 offset = getReadOffset();
308 m_context.getFunctions().copyTexImage1D(target, level, internalFormat, offset.x()+x, offset.y()+y, width, border);
313 // Don't log offset.
324 tcu::IVec2 offset = getReadOffset();
325 m_context.getFunctions().copyTexImage2D(target, level, internalFormat, offset.x()+x, offset.y()+y, width, height, border);
339 tcu::IVec2 offset = getReadOffset();
340 m_context.getFunctions().copyTexSubImage1D(target, level, xoffset, offset.x()+x, offset.y()+y, width);
354 tcu::IVec2 offset = getReadOffset();
355 m_context.getFunctions().copyTexSubImage2D(target, level, xoffset, yoffset, offset.x()+x, offset.y()+y, width, height);
369 tcu::IVec2 offset = getReadOffset();
370 m_context.getFunctions().copyTexSubImage3D(target, level, xoffset, yoffset, zoffset, offset.x()+x, offset.y()+y, width, height);
438 void GLContext::bufferSubData (deUint32 target, deIntptr offset, deIntptr size, const void* data)
440 m_wrapper->glBufferSubData(target, (glw::GLintptr)offset, (glw::GLsizeiptr)size, data);
487 // \note For clarity don't add the offset to log
491 tcu::IVec2 offset = getDrawOffset();
492 m_context.getFunctions().scissor(offset.x()+x, offset.y()+y, width, height);
900 // Don't log offset.
908 tcu::IVec2 offset = getReadOffset();
909 m_context.getFunctions().readPixels(x+offset.x(), y+offset.y(), width, height, format, type, data);