Lines Matching refs:zoffset
127 void callTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width,
130 void callCopyTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x,
136 void callCompressedTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset,
141 GLint zoffset) const;
393 void Texture3DBase::callTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset,
399 gl.texSubImage3DOES(target, level, xoffset, yoffset, zoffset, width, height, depth, format, type, pixels);
401 gl.texSubImage3D(target, level, xoffset, yoffset, zoffset, width, height, depth, format, type, pixels);
406 void Texture3DBase::callCopyTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset,
411 gl.copyTexSubImage3DOES(target, level, xoffset, yoffset, zoffset, x, y, width, height);
413 gl.copyTexSubImage3D(target, level, xoffset, yoffset, zoffset, x, y, width, height);
431 void Texture3DBase::callCompressedTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset,
437 gl.compressedTexSubImage3DOES(target, level, xoffset, yoffset, zoffset, width, height, depth, format, imageSize,
440 gl.compressedTexSubImage3D(target, level, xoffset, yoffset, zoffset, width, height, depth, format, imageSize,
447 GLint level, GLint zoffset) const
451 gl.framebufferTexture3DOES(target, attachment, textarget, texture, level, zoffset);
453 gl.framebufferTexture3D(target, attachment, textarget, texture, level, zoffset);
1373 const char* message = "GL_INVALID_VALUE is generated if xoffset, yoffset or zoffset are negative.";
1398 verifyError(GL_INVALID_VALUE, "GL_INVALID_VALUE is generated if zoffset + depth > texture_depth.");
1497 const char* message = "GL_INVALID_VALUE is generated if xoffset, yoffset or zoffset is negative.";
1525 verifyError(GL_INVALID_VALUE, "GL_INVALID_VALUE is generated if zoffset + 1 > texture_depth.");
1843 "GL_INVALID_VALUE or GL_INVALID_OPERATION is generated if xoffset, yoffset or zoffset are negative.";