Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/gpu/opengl/gl_context.hh')
-rw-r--r--source/blender/gpu/opengl/gl_context.hh13
1 files changed, 13 insertions, 0 deletions
diff --git a/source/blender/gpu/opengl/gl_context.hh b/source/blender/gpu/opengl/gl_context.hh
index 9e6359fabad..e2ae8bf24b2 100644
--- a/source/blender/gpu/opengl/gl_context.hh
+++ b/source/blender/gpu/opengl/gl_context.hh
@@ -55,6 +55,19 @@ class GLSharedOrphanLists {
class GLContext : public GPUContext {
public:
+ /** Capabilities. */
+ static GLint max_texture_3d_size;
+ static GLint max_cubemap_size;
+ static GLint max_ubo_size;
+ static GLint max_ubo_binds;
+ /** Extensions. */
+ static bool base_instance_support;
+ static bool texture_cube_map_array_support;
+ /** Workarounds. */
+ static bool texture_copy_workaround;
+ static bool unused_fb_slot_workaround;
+ static float derivative_signs[2];
+
/** Used for debugging purpose. Bitflags of all bound slots. */
uint16_t bound_ubo_slots;