]> git.tdb.fi Git - libs/gl.git/blobdiff - source/core/deviceinfo.cpp
Remove obsolete includes
[libs/gl.git] / source / core / deviceinfo.cpp
index f91e44a9cdd32bbbba061f9478e38274b92e3eca..8400ffdf0d344c448d3ed69eb132dc5f17c2f97e 100644 (file)
@@ -1,26 +1,8 @@
-#include <msp/gl/extensions/arb_uniform_buffer_object.h>
-#include <msp/gl/extensions/arb_vertex_shader.h>
-#include <msp/gl/extensions/ext_framebuffer_multisample.h>
-#include <msp/gl/extensions/msp_clipping.h>
-#include <msp/gl/extensions/nv_fbo_color_attachments.h>
 #include "deviceinfo.h"
-#include "gl.h"
 
 namespace Msp {
 namespace GL {
 
-Limits::Limits()
-{
-       glGetIntegerv(GL_MAX_VERTEX_ATTRIBS, reinterpret_cast<int *>(&max_vertex_attributes));
-       glGetIntegerv(GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS, reinterpret_cast<int *>(&max_texture_bindings));
-       glGetIntegerv(GL_MAX_UNIFORM_BUFFER_BINDINGS, reinterpret_cast<int *>(&max_uniform_bindings));
-       glGetIntegerv(GL_MAX_CLIP_PLANES, reinterpret_cast<int *>(&max_clip_planes));
-       glGetIntegerv(GL_MAX_SAMPLES, reinterpret_cast<int *>(&max_samples));
-       glGetIntegerv(GL_UNIFORM_BUFFER_OFFSET_ALIGNMENT, reinterpret_cast<int *>(&uniform_buffer_alignment));
-       glGetIntegerv(GL_MAX_COLOR_ATTACHMENTS, reinterpret_cast<int *>(&max_color_attachments));
-}
-
-
 const DeviceInfo &DeviceInfo::get_global()
 {
        static DeviceInfo info;