mirror of
https://github.com/brl/mutter.git
synced 2024-11-21 23:50:41 -05:00
cogl: Remove some unused framebuffer API
https://gitlab.gnome.org/GNOME/mutter/merge_requests/913
This commit is contained in:
parent
1688cf7c44
commit
e5b0f474ab
@ -227,7 +227,6 @@ cogl_framebuffer_finish
|
|||||||
cogl_framebuffer_frustum
|
cogl_framebuffer_frustum
|
||||||
cogl_framebuffer_get_alpha_bits
|
cogl_framebuffer_get_alpha_bits
|
||||||
cogl_framebuffer_get_blue_bits
|
cogl_framebuffer_get_blue_bits
|
||||||
cogl_framebuffer_get_color_format
|
|
||||||
cogl_framebuffer_get_context
|
cogl_framebuffer_get_context
|
||||||
cogl_framebuffer_get_depth_bits
|
cogl_framebuffer_get_depth_bits
|
||||||
cogl_framebuffer_get_depth_write_enabled
|
cogl_framebuffer_get_depth_write_enabled
|
||||||
@ -719,9 +718,6 @@ cogl_scale
|
|||||||
|
|
||||||
cogl_set_backface_culling_enabled
|
cogl_set_backface_culling_enabled
|
||||||
cogl_set_depth_test_enabled
|
cogl_set_depth_test_enabled
|
||||||
#ifndef COGL_DISABLE_DEPRECATED
|
|
||||||
cogl_set_draw_buffer
|
|
||||||
#endif
|
|
||||||
#ifdef COGL_HAS_SDL_SUPPORT
|
#ifdef COGL_HAS_SDL_SUPPORT
|
||||||
cogl_sdl_context_new
|
cogl_sdl_context_new
|
||||||
cogl_sdl_handle_event
|
cogl_sdl_handle_event
|
||||||
|
@ -163,21 +163,6 @@ cogl_set_framebuffer (CoglFramebuffer *framebuffer)
|
|||||||
_cogl_set_framebuffers (framebuffer, framebuffer);
|
_cogl_set_framebuffers (framebuffer, framebuffer);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* XXX: deprecated API */
|
|
||||||
void
|
|
||||||
cogl_set_draw_buffer (CoglBufferTarget target, CoglHandle handle)
|
|
||||||
{
|
|
||||||
_COGL_GET_CONTEXT (ctx, NO_RETVAL);
|
|
||||||
|
|
||||||
if (target == COGL_WINDOW_BUFFER)
|
|
||||||
handle = ctx->window_buffer;
|
|
||||||
|
|
||||||
/* This is deprecated public API. The public API doesn't currently
|
|
||||||
really expose the concept of separate draw and read buffers so
|
|
||||||
for the time being this actually just sets both buffers */
|
|
||||||
cogl_set_framebuffer (handle);
|
|
||||||
}
|
|
||||||
|
|
||||||
CoglFramebuffer *
|
CoglFramebuffer *
|
||||||
cogl_get_draw_framebuffer (void)
|
cogl_get_draw_framebuffer (void)
|
||||||
{
|
{
|
||||||
@ -244,13 +229,6 @@ cogl_push_framebuffer (CoglFramebuffer *buffer)
|
|||||||
_cogl_push_framebuffers (buffer, buffer);
|
_cogl_push_framebuffers (buffer, buffer);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* XXX: deprecated API */
|
|
||||||
void
|
|
||||||
cogl_push_draw_buffer (void)
|
|
||||||
{
|
|
||||||
cogl_push_framebuffer (cogl_get_draw_framebuffer ());
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
void
|
||||||
cogl_pop_framebuffer (void)
|
cogl_pop_framebuffer (void)
|
||||||
{
|
{
|
||||||
@ -280,16 +258,3 @@ cogl_pop_framebuffer (void)
|
|||||||
g_slist_delete_link (ctx->framebuffer_stack,
|
g_slist_delete_link (ctx->framebuffer_stack,
|
||||||
ctx->framebuffer_stack);
|
ctx->framebuffer_stack);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* XXX: deprecated API */
|
|
||||||
void
|
|
||||||
cogl_pop_draw_buffer (void)
|
|
||||||
{
|
|
||||||
cogl_pop_framebuffer ();
|
|
||||||
}
|
|
||||||
|
|
||||||
CoglPixelFormat
|
|
||||||
cogl_framebuffer_get_color_format (CoglFramebuffer *framebuffer)
|
|
||||||
{
|
|
||||||
return framebuffer->internal_format;
|
|
||||||
}
|
|
||||||
|
@ -153,53 +153,6 @@ COGL_DEPRECATED
|
|||||||
void
|
void
|
||||||
cogl_pop_framebuffer (void);
|
cogl_pop_framebuffer (void);
|
||||||
|
|
||||||
/**
|
|
||||||
* cogl_set_draw_buffer:
|
|
||||||
* @target: A #CoglBufferTarget that specifies what kind of framebuffer you
|
|
||||||
* are setting as the render target.
|
|
||||||
* @offscreen: If you are setting a framebuffer of type COGL_OFFSCREEN_BUFFER
|
|
||||||
* then this is a CoglHandle for the offscreen buffer.
|
|
||||||
*
|
|
||||||
* Redirects all subsequent drawing to the specified framebuffer. This
|
|
||||||
* can either be an offscreen buffer created with
|
|
||||||
* cogl_offscreen_new_to_texture () or you can revert to your original
|
|
||||||
* on screen window buffer.
|
|
||||||
*
|
|
||||||
* Deprecated: 1.16: The latest drawing apis take explicit
|
|
||||||
* #CoglFramebuffer arguments so this stack of
|
|
||||||
* framebuffers shouldn't be used anymore.
|
|
||||||
*/
|
|
||||||
COGL_DEPRECATED
|
|
||||||
void
|
|
||||||
cogl_set_draw_buffer (CoglBufferTarget target,
|
|
||||||
CoglHandle offscreen);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* cogl_push_draw_buffer:
|
|
||||||
*
|
|
||||||
* Save cogl_set_draw_buffer() state.
|
|
||||||
*
|
|
||||||
* Deprecated: 1.16: The latest drawing apis take explicit
|
|
||||||
* #CoglFramebuffer arguments so this stack of
|
|
||||||
* framebuffers shouldn't be used anymore.
|
|
||||||
*/
|
|
||||||
COGL_DEPRECATED
|
|
||||||
void
|
|
||||||
cogl_push_draw_buffer (void);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* cogl_pop_draw_buffer:
|
|
||||||
*
|
|
||||||
* Restore cogl_set_draw_buffer() state.
|
|
||||||
*
|
|
||||||
* Deprecated: 1.16: The latest drawing apis take explicit
|
|
||||||
* #CoglFramebuffer arguments so this stack of
|
|
||||||
* framebuffers shouldn't be used anymore.
|
|
||||||
*/
|
|
||||||
COGL_DEPRECATED
|
|
||||||
void
|
|
||||||
cogl_pop_draw_buffer (void);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* cogl_read_pixels:
|
* cogl_read_pixels:
|
||||||
* @x: The window x position to start reading from
|
* @x: The window x position to start reading from
|
||||||
@ -234,32 +187,6 @@ cogl_read_pixels (int x,
|
|||||||
CoglPixelFormat format,
|
CoglPixelFormat format,
|
||||||
uint8_t *pixels);
|
uint8_t *pixels);
|
||||||
|
|
||||||
|
|
||||||
/* XXX: Since this api was marked unstable, maybe we can just
|
|
||||||
* remove this api if we can't find anyone is using it. */
|
|
||||||
/**
|
|
||||||
* cogl_framebuffer_get_color_format: (skip)
|
|
||||||
* @framebuffer: A #CoglFramebuffer framebuffer
|
|
||||||
*
|
|
||||||
* Queries the common #CoglPixelFormat of all color buffers attached
|
|
||||||
* to this framebuffer. For an offscreen framebuffer created with
|
|
||||||
* cogl_offscreen_new_with_texture() this will correspond to the format
|
|
||||||
* of the texture.
|
|
||||||
*
|
|
||||||
* This API is deprecated because it is missleading to report a
|
|
||||||
* #CoglPixelFormat for the internal format of the @framebuffer since
|
|
||||||
* #CoglPixelFormat is such a precise format description and it's
|
|
||||||
* only the set of components and the premultiplied alpha status
|
|
||||||
* that is really known.
|
|
||||||
*
|
|
||||||
* Since: 1.8
|
|
||||||
* Stability: unstable
|
|
||||||
* Deprecated 1.18: Removed since it is misleading
|
|
||||||
*/
|
|
||||||
COGL_DEPRECATED
|
|
||||||
CoglPixelFormat
|
|
||||||
cogl_framebuffer_get_color_format (CoglFramebuffer *framebuffer);
|
|
||||||
|
|
||||||
G_END_DECLS
|
G_END_DECLS
|
||||||
|
|
||||||
#endif /* __COGL_FRAMEBUFFER_DEPRECATED_H__ */
|
#endif /* __COGL_FRAMEBUFFER_DEPRECATED_H__ */
|
||||||
|
Loading…
Reference in New Issue
Block a user