cogl-path: Undeprecate framebuffer functions
It looks like deprecating the functions with explicit framebuffer/pipeline arguments made it to (cogl) master by mistake: https://mail.gnome.org/archives/clutter-list/2016-April/msg00008.html We now use one of them, so this is a good time to undeprecate the lot. https://gitlab.gnome.org/GNOME/mutter/merge_requests/597
This commit is contained in:
parent
f869e4d54b
commit
80d11287eb
@ -460,9 +460,7 @@ cogl_path_fill (CoglPath *path);
|
|||||||
* use while filling a path.</note>
|
* use while filling a path.</note>
|
||||||
*
|
*
|
||||||
* Stability: unstable
|
* Stability: unstable
|
||||||
* Deprecated: 1.16: Use cogl_path_fill() instead
|
|
||||||
*/
|
*/
|
||||||
COGL_DEPRECATED_FOR (cogl_path_fill)
|
|
||||||
void
|
void
|
||||||
cogl_framebuffer_fill_path (CoglFramebuffer *framebuffer,
|
cogl_framebuffer_fill_path (CoglFramebuffer *framebuffer,
|
||||||
CoglPipeline *pipeline,
|
CoglPipeline *pipeline,
|
||||||
@ -492,9 +490,7 @@ cogl_path_stroke (CoglPath *path);
|
|||||||
* regardless of the current transformation matrix.
|
* regardless of the current transformation matrix.
|
||||||
*
|
*
|
||||||
* Stability: unstable
|
* Stability: unstable
|
||||||
* Deprecated: 1.16: Use cogl_path_stroke() instead
|
|
||||||
*/
|
*/
|
||||||
COGL_DEPRECATED_FOR (cogl_path_stroke)
|
|
||||||
void
|
void
|
||||||
cogl_framebuffer_stroke_path (CoglFramebuffer *framebuffer,
|
cogl_framebuffer_stroke_path (CoglFramebuffer *framebuffer,
|
||||||
CoglPipeline *pipeline,
|
CoglPipeline *pipeline,
|
||||||
@ -529,9 +525,7 @@ cogl_framebuffer_push_path_clip (CoglFramebuffer *framebuffer,
|
|||||||
*
|
*
|
||||||
* Since: 1.8
|
* Since: 1.8
|
||||||
* Stability: Unstable
|
* Stability: Unstable
|
||||||
* Deprecated: 1.16: Use cogl_framebuffer_push_path_clip() instead
|
|
||||||
*/
|
*/
|
||||||
COGL_DEPRECATED_FOR (cogl_framebuffer_push_path_clip)
|
|
||||||
void
|
void
|
||||||
cogl_clip_push_from_path (CoglPath *path);
|
cogl_clip_push_from_path (CoglPath *path);
|
||||||
|
|
||||||
|
@ -1504,7 +1504,6 @@ cogl_framebuffer_push_path_clip (CoglFramebuffer *framebuffer,
|
|||||||
COGL_FRAMEBUFFER_STATE_CLIP;
|
COGL_FRAMEBUFFER_STATE_CLIP;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* XXX: deprecated */
|
|
||||||
void
|
void
|
||||||
cogl_clip_push_from_path (CoglPath *path)
|
cogl_clip_push_from_path (CoglPath *path)
|
||||||
{
|
{
|
||||||
@ -1575,7 +1574,6 @@ _cogl_path_build_stroke_attribute_buffer (CoglPath *path)
|
|||||||
data->stroke_n_attributes = n_attributes;
|
data->stroke_n_attributes = n_attributes;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* XXX: deprecated */
|
|
||||||
void
|
void
|
||||||
cogl_framebuffer_fill_path (CoglFramebuffer *framebuffer,
|
cogl_framebuffer_fill_path (CoglFramebuffer *framebuffer,
|
||||||
CoglPipeline *pipeline,
|
CoglPipeline *pipeline,
|
||||||
@ -1588,7 +1586,6 @@ cogl_framebuffer_fill_path (CoglFramebuffer *framebuffer,
|
|||||||
_cogl_path_fill_nodes (path, framebuffer, pipeline, 0 /* flags */);
|
_cogl_path_fill_nodes (path, framebuffer, pipeline, 0 /* flags */);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* XXX: deprecated */
|
|
||||||
void
|
void
|
||||||
cogl_framebuffer_stroke_path (CoglFramebuffer *framebuffer,
|
cogl_framebuffer_stroke_path (CoglFramebuffer *framebuffer,
|
||||||
CoglPipeline *pipeline,
|
CoglPipeline *pipeline,
|
||||||
|
Loading…
Reference in New Issue
Block a user