mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-13 14:00:09 +00:00
e37fbaf13a
We were trying to deduce that previously. Now we have explicit API
21 lines
726 B
C
21 lines
726 B
C
#pragma once
|
|
|
|
#include "gdkgltexture.h"
|
|
|
|
#include "gdkgltexturebuilder.h"
|
|
#include "gdktextureprivate.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
GdkTexture * gdk_gl_texture_new_from_builder (GdkGLTextureBuilder *builder,
|
|
GDestroyNotify destroy,
|
|
gpointer data);
|
|
|
|
|
|
GdkGLContext * gdk_gl_texture_get_context (GdkGLTexture *self);
|
|
guint gdk_gl_texture_get_id (GdkGLTexture *self);
|
|
gboolean gdk_gl_texture_has_mipmap (GdkGLTexture *self);
|
|
|
|
G_END_DECLS
|
|
|