Lines Matching defs:width
59 void ContextWrapper::glViewport (int x, int y, int width, int height)
61 m_curCtx->viewport(x, y, width, height);
119 void ContextWrapper::glTexImage1D (deUint32 target, int level, int internalFormat, int width, int border, deUint32 format, deUint32 type, const void* data)
121 m_curCtx->texImage1D(target, level, (deUint32)internalFormat, width, border, format, type, data);
124 void ContextWrapper::glTexImage2D (deUint32 target, int level, int internalFormat, int width, int height, int border, deUint32 format, deUint32 type, const void* data)
126 m_curCtx->texImage2D(target, level, (deUint32)internalFormat, width, height, border, format, type, data);
129 void ContextWrapper::glTexImage3D (deUint32 target, int level, int internalFormat, int width, int height, int depth, int border, deUint32 format, deUint32 type, const void* data)
131 m_curCtx->texImage3D(target, level, (deUint32)internalFormat, width, height, depth, border, format, type, data);
134 void ContextWrapper::glTexSubImage1D (deUint32 target, int level, int xoffset, int width, deUint32 format, deUint32 type, const void* data)
136 m_curCtx->texSubImage1D(target, level, xoffset, width, format, type, data);
139 void ContextWrapper::glTexSubImage2D (deUint32 target, int level, int xoffset, int yoffset, int width, int height, deUint32 format, deUint32 type, const void* data)
141 m_curCtx->texSubImage2D(target, level, xoffset, yoffset, width, height, format, type, data);
144 void ContextWrapper::glTexSubImage3D (deUint32 target, int level, int xoffset, int yoffset, int zoffset, int width, int height, int depth, deUint32 format, deUint32 type, const void* data)
146 m_curCtx->texSubImage3D(target, level, xoffset, yoffset, zoffset, width, height, depth, format, type, data);
149 void ContextWrapper::glCopyTexImage1D (deUint32 target, int level, deUint32 internalFormat, int x, int y, int width, int border)
151 m_curCtx->copyTexImage1D(target, level, internalFormat, x, y, width, border);
154 void ContextWrapper::glCopyTexImage2D (deUint32 target, int level, deUint32 internalFormat, int x, int y, int width, int height, int border)
156 m_curCtx->copyTexImage2D(target, level, internalFormat, x, y, width, height, border);
159 void ContextWrapper::glCopyTexSubImage1D (deUint32 target, int level, int xoffset, int x, int y, int width)
161 m_curCtx->copyTexSubImage1D(target, level, xoffset, x, y, width);
164 void ContextWrapper::glCopyTexSubImage2D (deUint32 target, int level, int xoffset, int yoffset, int x, int y, int width, int height)
166 m_curCtx->copyTexSubImage2D(target, level, xoffset, yoffset, x, y, width, height);
169 void ContextWrapper::glTexStorage2D (deUint32 target, int levels, deUint32 internalFormat, int width, int height)
171 m_curCtx->texStorage2D(target, levels, internalFormat, width, height);
174 void ContextWrapper::glTexStorage3D (deUint32 target, int levels, deUint32 internalFormat, int width, int height, int depth)
176 m_curCtx->texStorage3D(target, levels, internalFormat, width, height, depth);
214 void ContextWrapper::glRenderbufferStorage (deUint32 target, deUint32 internalformat, int width, int height)
216 m_curCtx->renderbufferStorage(target, internalformat, width, height);
219 void ContextWrapper::glRenderbufferStorageMultisample (deUint32 target, int samples, deUint32 internalformat, int width, int height)
221 m_curCtx->renderbufferStorageMultisample(target, samples, internalformat, width, height);
289 void ContextWrapper::glScissor (int x, int y, int width, int height)
291 m_curCtx->scissor(x, y, width, height);
364 void ContextWrapper::glInvalidateSubFramebuffer (deUint32 target, int numAttachments, const deUint32* attachments, int x, int y, int width, int height)
366 m_curCtx->invalidateSubFramebuffer(target, numAttachments, attachments, x, y, width, height);
374 void ContextWrapper::glReadPixels (int x, int y, int width, int height, deUint32 format, deUint32 type, void* data)
376 m_curCtx->readPixels(x, y, width, height, format, type, data);