]> git.tdb.fi Git - libs/gl.git/blobdiff - source/core/deviceinfo.h
Remove obsolete includes
[libs/gl.git] / source / core / deviceinfo.h
index 8550d85ff75f35061e5c5c8c7f7dbe371d2c24b2..a95841197a9c604585ec82aed8b039cbff25438e 100644 (file)
@@ -6,19 +6,26 @@
 namespace Msp {
 namespace GL {
 
+/**
+Contains information about various limits imposed by the graphics device.
+*/
 struct Limits
 {
-       unsigned max_vertex_attributes;
-       unsigned max_texture_bindings;
-       unsigned max_uniform_bindings;
-       unsigned max_clip_planes;
-       unsigned max_samples;
-       unsigned uniform_buffer_alignment;
-       unsigned max_color_attachments;
+       unsigned max_clip_planes = 6;
+       unsigned max_vertex_attributes = 16;
+       unsigned max_texture_bindings = 16;
+       unsigned max_color_attachments = 8;
+       unsigned max_samples = 4;
+       unsigned max_uniform_bindings = 24;
+       unsigned uniform_buffer_alignment = 256;
+       float max_anisotropy = 1.0f;
 
        Limits();
 };
 
+/**
+Contains information about a graphics device.
+*/
 struct DeviceInfo
 {
        Limits limits;
@@ -26,6 +33,7 @@ struct DeviceInfo
 
        DeviceInfo();
 
+       /** Returns information for the device currently in use. */
        static const DeviceInfo &get_global();
 };