Browse Source

Added NV_fbo_color_attachments ES extension to the list.

pull/23/head
Vladimír Vondruš 13 years ago
parent
commit
323277a2f1
  1. 1
      src/Context.cpp
  2. 1
      src/Extensions.h

1
src/Context.cpp

@ -250,6 +250,7 @@ const std::vector<Extension>& Extension::extensions(Version version) {
_extension(GL,EXT,texture_storage),
_extension(GL,EXT,map_buffer_range),
_extension(GL,NV,draw_buffers),
_extension(GL,NV,fbo_color_attachments),
_extension(GL,NV,read_buffer),
_extension(GL,NV,read_depth),
_extension(GL,NV,read_depth_stencil),

1
src/Extensions.h

@ -228,6 +228,7 @@ namespace GL {
_extension(GL,KHR,debug, GLES200, None) // #118
} namespace NV {
_extension(GL,NV,draw_buffers, GLES200, GLES300) // #91
_extension(GL,NV,fbo_color_attachments, GLES200, GLES300) // #92
_extension(GL,NV,read_buffer, GLES200, GLES300) // #93
_extension(GL,NV,read_buffer_front, GLES200, None) // #93
_extension(GL,NV,read_depth, GLES200, GLES300) // #94

Loading…
Cancel
Save