aboutsummaryrefslogtreecommitdiff
path: root/render/gles2
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2018-07-12 23:35:33 +0100
committeremersion <contact@emersion.fr>2018-07-12 23:35:33 +0100
commitc4915d149289683b6a3b8c836ba5591a8973baba (patch)
tree84e3a2b6d35b5b7c4967a34c011afb8782a9da60 /render/gles2
parentd8bbdf3bd5edce03c550bb0982ac997392ac5711 (diff)
render: add wlr_texture_is_opaque
Diffstat (limited to 'render/gles2')
-rw-r--r--render/gles2/texture.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/render/gles2/texture.c b/render/gles2/texture.c
index 3c70a235..1e55f4c4 100644
--- a/render/gles2/texture.c
+++ b/render/gles2/texture.c
@@ -36,6 +36,11 @@ static void gles2_texture_get_size(struct wlr_texture *wlr_texture, int *width,
*height = texture->height;
}
+static bool gles2_texture_is_opaque(struct wlr_texture *wlr_texture) {
+ struct wlr_gles2_texture *texture = gles2_get_texture(wlr_texture);
+ return !texture->has_alpha;
+}
+
static bool gles2_texture_write_pixels(struct wlr_texture *wlr_texture,
enum wl_shm_format wl_fmt, uint32_t stride, uint32_t width,
uint32_t height, uint32_t src_x, uint32_t src_y, uint32_t dst_x,
@@ -129,6 +134,7 @@ static void gles2_texture_destroy(struct wlr_texture *wlr_texture) {
static const struct wlr_texture_impl texture_impl = {
.get_size = gles2_texture_get_size,
+ .is_opaque = gles2_texture_is_opaque,
.write_pixels = gles2_texture_write_pixels,
.to_dmabuf = gles2_texture_to_dmabuf,
.destroy = gles2_texture_destroy,