mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-15 21:20:09 +00:00
47 lines
1.8 KiB
C
47 lines
1.8 KiB
C
/* gsknglrenderer.h
|
|
*
|
|
* Copyright 2020 Christian Hergert <chergert@redhat.com>
|
|
*
|
|
* 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.1 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 program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1-or-later
|
|
*/
|
|
|
|
#ifndef __GSK_NGL_RENDERER_H__
|
|
#define __GSK_NGL_RENDERER_H__
|
|
|
|
#include <gsk/gskrenderer.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define GSK_TYPE_NGL_RENDERER (gsk_ngl_renderer_get_type())
|
|
|
|
#define GSK_NGL_RENDERER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GSK_TYPE_NGL_RENDERER, GskNglRenderer))
|
|
#define GSK_IS_NGL_RENDERER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GSK_TYPE_NGL_RENDERER))
|
|
#define GSK_NGL_RENDERER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GSK_TYPE_NGL_RENDERER, GskNglRendererClass))
|
|
#define GSK_IS_NGL_RENDERER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GSK_TYPE_NGL_RENDERER))
|
|
#define GSK_NGL_RENDERER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GSK_TYPE_NGL_RENDERER, GskNglRendererClass))
|
|
|
|
typedef struct _GskNglRenderer GskNglRenderer;
|
|
typedef struct _GskNglRendererClass GskNglRendererClass;
|
|
|
|
GDK_AVAILABLE_IN_4_2
|
|
GType gsk_ngl_renderer_get_type (void) G_GNUC_CONST;
|
|
GDK_AVAILABLE_IN_4_2
|
|
GskRenderer *gsk_ngl_renderer_new (void);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __GSK_NGL_RENDERER__ */
|