Module: GL_ARB_vertex_attrib_binding::Functions

Defined in:
lib/opengl-definitions/extensions/GL_ARB_vertex_attrib_binding.rb

Constant Summary collapse

Parameters =
{
  glBindVertexBuffer:     [ :void, :GLuint, :GLuint, :GLintptr, :GLsizei ].freeze,
  glVertexAttribFormat:   [ :void, :GLuint, :GLint, :GLenum, :GLboolean, :GLuint ].freeze,
  glVertexAttribIFormat:  [ :void, :GLuint, :GLint, :GLenum, :GLuint ].freeze,
  glVertexAttribLFormat:  [ :void, :GLuint, :GLint, :GLenum, :GLuint ].freeze,
  glVertexAttribBinding:  [ :void, :GLuint, :GLuint ].freeze,
  glVertexBindingDivisor: [ :void, :GLuint, :GLuint ].freeze,
}.freeze

Instance Method Summary collapse

Instance Method Details

#glBindVertexBuffer(bindingindex, buffer, offset, stride) ⇒ Object



13
# File 'lib/opengl-definitions/extensions/GL_ARB_vertex_attrib_binding.rb', line 13

def glBindVertexBuffer(bindingindex, buffer, offset, stride) end

#glVertexAttribBinding(attribindex, bindingindex) ⇒ Object



17
# File 'lib/opengl-definitions/extensions/GL_ARB_vertex_attrib_binding.rb', line 17

def glVertexAttribBinding(attribindex, bindingindex) end

#glVertexAttribFormat(attribindex, size, type, normalized, relativeoffset) ⇒ Object



14
# File 'lib/opengl-definitions/extensions/GL_ARB_vertex_attrib_binding.rb', line 14

def glVertexAttribFormat(attribindex, size, type, normalized, relativeoffset) end

#glVertexAttribIFormat(attribindex, size, type, relativeoffset) ⇒ Object



15
# File 'lib/opengl-definitions/extensions/GL_ARB_vertex_attrib_binding.rb', line 15

def glVertexAttribIFormat(attribindex, size, type, relativeoffset) end

#glVertexAttribLFormat(attribindex, size, type, relativeoffset) ⇒ Object



16
# File 'lib/opengl-definitions/extensions/GL_ARB_vertex_attrib_binding.rb', line 16

def glVertexAttribLFormat(attribindex, size, type, relativeoffset) end

#glVertexBindingDivisor(bindingindex, divisor) ⇒ Object



18
# File 'lib/opengl-definitions/extensions/GL_ARB_vertex_attrib_binding.rb', line 18

def glVertexBindingDivisor(bindingindex, divisor) end