2023-03-31 19:11:10 +00:00
|
|
|
#pragma once
|
2018-03-05 13:38:38 +00:00
|
|
|
|
|
|
|
#include "gdkgltexture.h"
|
|
|
|
|
2023-04-24 12:36:38 +00:00
|
|
|
#include "gdkgltexturebuilder.h"
|
2018-03-05 13:38:38 +00:00
|
|
|
#include "gdktextureprivate.h"
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2023-04-24 12:36:38 +00:00
|
|
|
GdkTexture * gdk_gl_texture_new_from_builder (GdkGLTextureBuilder *builder,
|
|
|
|
GDestroyNotify destroy,
|
|
|
|
gpointer data);
|
2023-04-25 09:03:51 +00:00
|
|
|
|
2023-04-24 12:36:38 +00:00
|
|
|
|
2018-03-05 13:38:38 +00:00
|
|
|
GdkGLContext * gdk_gl_texture_get_context (GdkGLTexture *self);
|
|
|
|
guint gdk_gl_texture_get_id (GdkGLTexture *self);
|
2023-03-23 12:44:26 +00:00
|
|
|
gboolean gdk_gl_texture_has_mipmap (GdkGLTexture *self);
|
2023-04-25 09:03:51 +00:00
|
|
|
gpointer gdk_gl_texture_get_sync (GdkGLTexture *self);
|
2018-03-05 13:38:38 +00:00
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|