clutter-stage: Pass framebuffer to read pixels from

Instead of using cogl_read_pixels(), which is deprecated and
uses the implicit framebuffer, pass the current CoglFramebuffer
and use cogl_framebuffer_read_pixels().
This commit is contained in:
Georges Basile Stavracas Neto 2018-11-08 19:35:55 -02:00
parent dd82fbebf6
commit c1b6184e0a
No known key found for this signature in database
GPG Key ID: 886C17EE170D1385

View File

@ -1391,7 +1391,8 @@ clutter_stage_get_redraw_clip_bounds (ClutterStage *stage,
}
static void
read_pixels_to_file (char *filename_stem,
read_pixels_to_file (CoglFramebuffer *fb,
char *filename_stem,
int x,
int y,
int width,
@ -1405,8 +1406,8 @@ read_pixels_to_file (char *filename_stem,
read_count);
data = g_malloc (4 * width * height);
cogl_read_pixels (x, y, width, height,
COGL_READ_PIXELS_COLOR_BUFFER,
cogl_framebuffer_read_pixels (fb,
x, y, width, height,
CLUTTER_CAIRO_FORMAT_ARGB32,
data);
@ -1532,7 +1533,7 @@ _clutter_stage_do_pick_on_view (ClutterStage *stage,
_clutter_actor_get_debug_name (actor),
view_layout.x);
read_pixels_to_file (file_name, 0, 0, fb_width, fb_height);
read_pixels_to_file (fb, file_name, 0, 0, fb_width, fb_height);
g_free (file_name);
}