diff options
author | nyorain <nyorain@gmail.com> | 2018-10-16 09:35:28 +0200 |
---|---|---|
committer | nyorain <nyorain@gmail.com> | 2018-10-16 09:35:28 +0200 |
commit | cb03a41a3b73e35b3bd6295fc413900874d611bb (patch) | |
tree | 052c13c8956edf79d4a29afbf5f0c3fc3c214198 /include/render | |
parent | cd28637187149a0f90429e63408bacd98033e59f (diff) |
Use enum wl_shm_format for gles2 texture formats
Also rephrase the write_pixels comment.
Diffstat (limited to 'include/render')
-rw-r--r-- | include/render/gles2.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/render/gles2.h b/include/render/gles2.h index 04a73e27..7ff2f174 100644 --- a/include/render/gles2.h +++ b/include/render/gles2.h @@ -19,7 +19,7 @@ extern PFNGLEGLIMAGETARGETTEXTURE2DOESPROC glEGLImageTargetTexture2DOES; struct wlr_gles2_pixel_format { - uint32_t wl_format; + enum wl_shm_format wl_format; GLint gl_format, gl_type; int depth, bpp; bool has_alpha; @@ -72,7 +72,7 @@ struct wlr_gles2_texture { enum wlr_gles2_texture_type type; int width, height; bool has_alpha; - uint32_t wl_format; // used to interpret upload data + enum wl_shm_format wl_format; // used to interpret upload data bool inverted_y; // Not set if WLR_GLES2_TEXTURE_GLTEX |