aboutsummaryrefslogtreecommitdiff
path: root/examples/output-layout.c
diff options
context:
space:
mode:
authorTony Crisci <tony@dubstepdish.com>2018-03-28 00:14:57 -0400
committerGitHub <noreply@github.com>2018-03-28 00:14:57 -0400
commit330ee081269790922a46091399b616b12ce14f51 (patch)
treeffe735fa4b9ca2b058be2c69ccad290dc090d883 /examples/output-layout.c
parent48e8202883594091d2ec2b5d0d8a55ddf2f0aea6 (diff)
parentadf4fb08dde2fa3e981213dd6a8c97de1f93c110 (diff)
Merge pull request #744 from emersion/texture-redesign
Redesign wlr_texture
Diffstat (limited to 'examples/output-layout.c')
-rw-r--r--examples/output-layout.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/output-layout.c b/examples/output-layout.c
index 45d896b0..c1392a30 100644
--- a/examples/output-layout.c
+++ b/examples/output-layout.c
@@ -197,9 +197,9 @@ int main(int argc, char *argv[]) {
compositor_init(&compositor);
state.renderer = wlr_gles2_renderer_create(compositor.backend);
- state.cat_texture = wlr_render_texture_create(state.renderer);
- wlr_texture_upload_pixels(state.cat_texture, WL_SHM_FORMAT_ABGR8888,
- cat_tex.width, cat_tex.width, cat_tex.height, cat_tex.pixel_data);
+ state.cat_texture = wlr_texture_from_pixels(state.renderer,
+ WL_SHM_FORMAT_ABGR8888, cat_tex.width * 4, cat_tex.width, cat_tex.height,
+ cat_tex.pixel_data);
if (!wlr_backend_start(compositor.backend)) {
wlr_log(L_ERROR, "Failed to start backend");