mirror of
https://github.com/brl/mutter.git
synced 2025-04-09 11:49:38 +00:00

The helper doesn't do anything that makes it worth to be exposed as public API. End-users, such as GNOME Shell could have an in-tree helper if they end up using it that much. Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/3086>
51 lines
1.3 KiB
C
51 lines
1.3 KiB
C
/*
|
|
* Clutter.
|
|
*
|
|
* An OpenGL based 'interactive canvas' library.
|
|
*
|
|
* Copyright (C) 2012 Intel Corporation
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/**
|
|
* SECTION:clutter-cairo
|
|
* @Title: Cairo integration
|
|
* @Short_Description: Functions for interoperating with Cairo
|
|
*
|
|
* Clutter provides some utility functions for using Cairo.
|
|
*/
|
|
|
|
#include "clutter/clutter-build-config.h"
|
|
|
|
#include "clutter/clutter-cairo.h"
|
|
#include "clutter/clutter-color.h"
|
|
|
|
/**
|
|
* clutter_cairo_clear:
|
|
* @cr: a Cairo context
|
|
*
|
|
* Utility function to clear a Cairo context.
|
|
*/
|
|
void
|
|
clutter_cairo_clear (cairo_t *cr)
|
|
{
|
|
cairo_save (cr);
|
|
|
|
cairo_set_operator (cr, CAIRO_OPERATOR_CLEAR);
|
|
cairo_paint (cr);
|
|
|
|
cairo_restore (cr);
|
|
}
|