mirror of
https://github.com/brl/mutter.git
synced 2024-11-22 16:10:41 -05:00
cogl-hello: use new _add_frame_callback api
This updates cogl-hello to use the new cogl_onscreen_add_frame_callback() api to use _SYNC events for throttling. Reviewed-by: Neil Roberts <neil@linux.intel.com> (cherry picked from commit 06d3cb0d99944e0150e30d553d248feb5f049000)
This commit is contained in:
parent
24733abf68
commit
51c1b3fbff
@ -19,19 +19,16 @@ paint_cb (void *user_data)
|
|||||||
cogl_framebuffer_draw_primitive (data->fb, data->pipeline, data->triangle);
|
cogl_framebuffer_draw_primitive (data->fb, data->pipeline, data->triangle);
|
||||||
cogl_onscreen_swap_buffers (COGL_ONSCREEN (data->fb));
|
cogl_onscreen_swap_buffers (COGL_ONSCREEN (data->fb));
|
||||||
|
|
||||||
/* If the driver can deliver swap complete events then we can remove
|
|
||||||
* the idle paint callback until we next get a swap complete event
|
|
||||||
* otherwise we keep the idle paint callback installed and simply
|
|
||||||
* paint as fast as the driver will allow... */
|
|
||||||
if (cogl_has_feature (data->ctx, COGL_FEATURE_ID_SWAP_BUFFERS_EVENT))
|
|
||||||
return FALSE; /* remove the callback */
|
return FALSE; /* remove the callback */
|
||||||
else
|
|
||||||
return TRUE;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
swap_complete_cb (CoglFramebuffer *framebuffer, void *user_data)
|
frame_event_cb (CoglOnscreen *onscreen,
|
||||||
|
CoglFrameEvent event,
|
||||||
|
CoglFrameInfo *info,
|
||||||
|
void *user_data)
|
||||||
{
|
{
|
||||||
|
if (event == COGL_FRAME_EVENT_SYNC)
|
||||||
g_idle_add (paint_cb, user_data);
|
g_idle_add (paint_cb, user_data);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -70,10 +67,10 @@ main (int argc, char **argv)
|
|||||||
|
|
||||||
g_source_attach (cogl_source, NULL);
|
g_source_attach (cogl_source, NULL);
|
||||||
|
|
||||||
if (cogl_has_feature (data.ctx, COGL_FEATURE_ID_SWAP_BUFFERS_EVENT))
|
cogl_onscreen_add_frame_callback (COGL_ONSCREEN (data.fb),
|
||||||
cogl_onscreen_add_swap_buffers_callback (COGL_ONSCREEN (data.fb),
|
frame_event_cb,
|
||||||
swap_complete_cb, &data);
|
&data,
|
||||||
|
NULL); /* destroy notify */
|
||||||
g_idle_add (paint_cb, &data);
|
g_idle_add (paint_cb, &data);
|
||||||
|
|
||||||
loop = g_main_loop_new (NULL, TRUE);
|
loop = g_main_loop_new (NULL, TRUE);
|
||||||
|
Loading…
Reference in New Issue
Block a user