2010-10-18 13:27:14 -04:00
|
|
|
/*
|
|
|
|
* shaped texture
|
|
|
|
*
|
|
|
|
* An actor to draw a texture clipped to a list of rectangles
|
|
|
|
*
|
|
|
|
* Authored By Neil Roberts <neil@linux.intel.com>
|
|
|
|
*
|
|
|
|
* Copyright (C) 2008 Intel Corporation
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2014-01-11 20:42:06 -05:00
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
2010-10-18 13:27:14 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __META_SHAPED_TEXTURE_H__
|
|
|
|
#define __META_SHAPED_TEXTURE_H__
|
|
|
|
|
2011-10-04 17:35:11 -04:00
|
|
|
#include <X11/Xlib.h>
|
2010-10-18 13:27:14 -04:00
|
|
|
|
2018-07-10 04:36:24 -04:00
|
|
|
#include "clutter/clutter.h"
|
2019-01-22 21:25:35 -05:00
|
|
|
#include <meta/common.h>
|
2018-07-10 04:36:24 -04:00
|
|
|
|
2010-10-18 13:27:14 -04:00
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2018-10-31 06:47:17 -04:00
|
|
|
#define META_TYPE_SHAPED_TEXTURE (meta_shaped_texture_get_type ())
|
2019-01-22 21:25:35 -05:00
|
|
|
|
|
|
|
META_EXPORT
|
2018-10-31 06:47:17 -04:00
|
|
|
G_DECLARE_FINAL_TYPE (MetaShapedTexture,
|
|
|
|
meta_shaped_texture,
|
|
|
|
META, SHAPED_TEXTURE,
|
2019-09-13 00:40:03 -04:00
|
|
|
GObject)
|
2010-10-18 13:27:14 -04:00
|
|
|
|
|
|
|
|
2019-01-22 21:25:35 -05:00
|
|
|
META_EXPORT
|
2010-10-18 13:27:14 -04:00
|
|
|
void meta_shaped_texture_set_create_mipmaps (MetaShapedTexture *stex,
|
|
|
|
gboolean create_mipmaps);
|
|
|
|
|
2019-01-22 21:25:35 -05:00
|
|
|
META_EXPORT
|
2013-02-19 19:34:47 -05:00
|
|
|
CoglTexture * meta_shaped_texture_get_texture (MetaShapedTexture *stex);
|
2010-10-18 13:27:14 -04:00
|
|
|
|
2019-01-22 21:25:35 -05:00
|
|
|
META_EXPORT
|
2012-04-27 00:14:42 -04:00
|
|
|
void meta_shaped_texture_set_mask_texture (MetaShapedTexture *stex,
|
2013-02-19 19:34:47 -05:00
|
|
|
CoglTexture *mask_texture);
|
2019-01-22 21:25:35 -05:00
|
|
|
|
|
|
|
META_EXPORT
|
2011-12-20 17:21:59 -05:00
|
|
|
cairo_surface_t * meta_shaped_texture_get_image (MetaShapedTexture *stex,
|
|
|
|
cairo_rectangle_int_t *clip);
|
|
|
|
|
2010-10-18 13:27:14 -04:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __META_SHAPED_TEXTURE_H__ */
|