1
0
Fork 0

Remove unused _cogl_framebuffer_get_winsys

Unused since 4f3b57c841 ("cogl/onscreen: Move buffer age getter vfunc
to class").

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/3178>
This commit is contained in:
Michel Dänzer 2023-08-11 18:28:08 +02:00 committed by Marge Bot
parent 4238a4c30b
commit 935cb48f71
2 changed files with 0 additions and 12 deletions

View file

@ -155,9 +155,6 @@ cogl_framebuffer_get_internal_format (CoglFramebuffer *framebuffer);
void _cogl_framebuffer_free (CoglFramebuffer *framebuffer); void _cogl_framebuffer_free (CoglFramebuffer *framebuffer);
const CoglWinsysVtable *
_cogl_framebuffer_get_winsys (CoglFramebuffer *framebuffer);
void void
_cogl_framebuffer_clear_without_flush4f (CoglFramebuffer *framebuffer, _cogl_framebuffer_clear_without_flush4f (CoglFramebuffer *framebuffer,
unsigned long buffers, unsigned long buffers,

View file

@ -416,15 +416,6 @@ cogl_framebuffer_class_init (CoglFramebufferClass *klass)
0); 0);
} }
const CoglWinsysVtable *
_cogl_framebuffer_get_winsys (CoglFramebuffer *framebuffer)
{
CoglFramebufferPrivate *priv =
cogl_framebuffer_get_instance_private (framebuffer);
return priv->context->display->renderer->winsys_vtable;
}
/* This version of cogl_clear can be used internally as an alternative /* This version of cogl_clear can be used internally as an alternative
* to avoid flushing the journal or the framebuffer state. This is * to avoid flushing the journal or the framebuffer state. This is
* needed when doing operations that may be called while flushing * needed when doing operations that may be called while flushing