mirror of
https://github.com/brl/mutter.git
synced 2024-11-21 23:50:41 -05:00
cogl/gl-framebuffer: Remove hard coding type name
Either "onscreen" or "offscreen" was logged as the type; replace this with the actual type name. Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1514>
This commit is contained in:
parent
b07994b606
commit
9a21f97ce1
@ -130,7 +130,7 @@ ensure_bits_initialized (CoglGlFramebufferBack *gl_framebuffer_back)
|
|||||||
COGL_NOTE (FRAMEBUFFER,
|
COGL_NOTE (FRAMEBUFFER,
|
||||||
"RGBA/D/S Bits for framebuffer[%p, %s]: %d, %d, %d, %d, %d, %d",
|
"RGBA/D/S Bits for framebuffer[%p, %s]: %d, %d, %d, %d, %d, %d",
|
||||||
framebuffer,
|
framebuffer,
|
||||||
COGL_IS_OFFSCREEN (framebuffer) ? "offscreen" : "onscreen",
|
G_OBJECT_TYPE_NAME (framebuffer),
|
||||||
bits->red,
|
bits->red,
|
||||||
bits->blue,
|
bits->blue,
|
||||||
bits->green,
|
bits->green,
|
||||||
|
@ -148,7 +148,7 @@ ensure_bits_initialized (CoglGlFramebufferFbo *gl_framebuffer_fbo)
|
|||||||
COGL_NOTE (FRAMEBUFFER,
|
COGL_NOTE (FRAMEBUFFER,
|
||||||
"RGBA/D/S Bits for framebuffer[%p, %s]: %d, %d, %d, %d, %d, %d",
|
"RGBA/D/S Bits for framebuffer[%p, %s]: %d, %d, %d, %d, %d, %d",
|
||||||
framebuffer,
|
framebuffer,
|
||||||
COGL_IS_OFFSCREEN (framebuffer) ? "offscreen" : "onscreen",
|
G_OBJECT_TYPE_NAME (framebuffer),
|
||||||
bits->red,
|
bits->red,
|
||||||
bits->blue,
|
bits->blue,
|
||||||
bits->green,
|
bits->green,
|
||||||
|
Loading…
Reference in New Issue
Block a user