module Roglew::ImmediateFramebufferContextARB

Public Instance Methods

attachment_parameter(attachment, pname) click to toggle source
# File lib/roglew/extensions/GL_ARB_framebuffer_object/framebuffer_context.rb, line 12
def attachment_parameter(attachment, pname)
  framebuffer_attachment_parameter(@target, attachment, pname)
end
included(c) click to toggle source
# File lib/roglew/extensions/GL_ARB_framebuffer_object/framebuffer_context.rb, line 3
def included(c)
  c.make_calls :handle, :glCheckFramebufferStatus
  c.make_calls :context, :framebuffer_attachment_parameter
end
status() click to toggle source
# File lib/roglew/extensions/GL_ARB_framebuffer_object/framebuffer_context.rb, line 8
def status
  glCheckFramebufferStatus(@target)
end