Module: GL_VERSION_1_0::RenderContext

Includes:
Roglew::RenderContextExtension
Defined in:
lib/roglew/extensions/GL_VERSION_1_0.rb

Instance Method Summary collapse

Methods included from Roglew::RenderContextExtension

included

Instance Method Details

#begin(mode) ⇒ Object



266
267
268
269
270
271
# File 'lib/roglew/extensions/GL_VERSION_1_0.rb', line 266

def begin(mode)
  @rh.glBegin(mode)
  return unless block_given?
  yield
  @rh.glEnd
end