aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAlexander Orzechowski <alex@ozal.ski>2023-06-23 17:24:38 -0400
committerSimon Ser <contact@emersion.fr>2023-11-29 13:25:06 +0100
commit91182266342587cf01b2e625dbf0682df149f3db (patch)
tree189cf95e4c6c9486cfe6aedfa12f98be66c9f624 /include
parentae3d7a697c3e8b137f6cf5f9208cc9dd132f541c (diff)
render/gles2: Don't track has_alpha in pixel_format
Why track the alpha here when we can already get that information elsewhere?
Diffstat (limited to 'include')
-rw-r--r--include/render/gles2.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/render/gles2.h b/include/render/gles2.h
index 930cf07d..83dabb7e 100644
--- a/include/render/gles2.h
+++ b/include/render/gles2.h
@@ -25,7 +25,6 @@ struct wlr_gles2_pixel_format {
// optional field, if empty then internalformat = format
GLint gl_internalformat;
GLint gl_format, gl_type;
- bool has_alpha;
};
struct wlr_gles2_tex_shader {