From fe7db316636c2a3bfb646d0245367722f50d6921 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timm=20B=C3=A4der?= Date: Thu, 9 Nov 2017 10:55:14 +0100 Subject: [PATCH] gl driver: Make some members const --- gsk/gskgldriver.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gsk/gskgldriver.c b/gsk/gskgldriver.c index 41c6f6ca82..dbc3977527 100644 --- a/gsk/gskgldriver.c +++ b/gsk/gskgldriver.c @@ -45,10 +45,10 @@ struct _GskGLDriver GHashTable *textures; GHashTable *vaos; - Texture *bound_source_texture; - Texture *bound_mask_texture; - Vao *bound_vao; - Fbo *bound_fbo; + const Texture *bound_source_texture; + const Texture *bound_mask_texture; + const Vao *bound_vao; + const Fbo *bound_fbo; int max_texture_size;