Module: GL_EXT_copy_texture::Functions
- Defined in:
- lib/opengl-definitions/extensions/GL_EXT_copy_texture.rb
Constant Summary collapse
- Parameters =
{ glCopyTexImage1DEXT: [ :void, :GLenum, :GLint, :GLenum, :GLint, :GLint, :GLsizei, :GLint ].freeze, glCopyTexImage2DEXT: [ :void, :GLenum, :GLint, :GLenum, :GLint, :GLint, :GLsizei, :GLsizei, :GLint ].freeze, glCopyTexSubImage1DEXT: [ :void, :GLenum, :GLint, :GLint, :GLint, :GLint, :GLsizei ].freeze, glCopyTexSubImage2DEXT: [ :void, :GLenum, :GLint, :GLint, :GLint, :GLint, :GLint, :GLsizei, :GLsizei ].freeze, glCopyTexSubImage3DEXT: [ :void, :GLenum, :GLint, :GLint, :GLint, :GLint, :GLint, :GLint, :GLsizei, :GLsizei ].freeze, }.freeze
Instance Method Summary collapse
- #glCopyTexImage1DEXT(target, level, internalformat, x, y, width, border) ⇒ Object
- #glCopyTexImage2DEXT(target, level, internalformat, x, y, width, height, border) ⇒ Object
- #glCopyTexSubImage1DEXT(target, level, xoffset, x, y, width) ⇒ Object
- #glCopyTexSubImage2DEXT(target, level, xoffset, yoffset, x, y, width, height) ⇒ Object
- #glCopyTexSubImage3DEXT(target, level, xoffset, yoffset, zoffset, x, y, width, height) ⇒ Object
Instance Method Details
#glCopyTexImage1DEXT(target, level, internalformat, x, y, width, border) ⇒ Object
3 |
# File 'lib/opengl-definitions/extensions/GL_EXT_copy_texture.rb', line 3 def glCopyTexImage1DEXT(target, level, internalformat, x, y, width, border) end |
#glCopyTexImage2DEXT(target, level, internalformat, x, y, width, height, border) ⇒ Object
4 |
# File 'lib/opengl-definitions/extensions/GL_EXT_copy_texture.rb', line 4 def glCopyTexImage2DEXT(target, level, internalformat, x, y, width, height, border) end |
#glCopyTexSubImage1DEXT(target, level, xoffset, x, y, width) ⇒ Object
5 |
# File 'lib/opengl-definitions/extensions/GL_EXT_copy_texture.rb', line 5 def glCopyTexSubImage1DEXT(target, level, xoffset, x, y, width) end |
#glCopyTexSubImage2DEXT(target, level, xoffset, yoffset, x, y, width, height) ⇒ Object
6 |
# File 'lib/opengl-definitions/extensions/GL_EXT_copy_texture.rb', line 6 def glCopyTexSubImage2DEXT(target, level, xoffset, yoffset, x, y, width, height) end |
#glCopyTexSubImage3DEXT(target, level, xoffset, yoffset, zoffset, x, y, width, height) ⇒ Object
7 |
# File 'lib/opengl-definitions/extensions/GL_EXT_copy_texture.rb', line 7 def glCopyTexSubImage3DEXT(target, level, xoffset, yoffset, zoffset, x, y, width, height) end |