Document GdkMemoryTexture

This commit is contained in:
Matthias Clasen 2018-04-28 16:20:19 -04:00
parent a0f591297a
commit 059a181f7d
3 changed files with 16 additions and 2 deletions

View File

@ -725,7 +725,7 @@ gdk_texture_get_height
gdk_texture_download
gdk_texture_save_to_png
GdkMemoryFormat
GDK_MEMORY_FORMAT_DEFAULT
GDK_MEMORY_DEFAULT
gdk_memory_texture_new
gdk_gl_texture_new
gdk_gl_texture_release

View File

@ -105,6 +105,20 @@ gdk_memory_texture_init (GdkMemoryTexture *self)
{
}
/**
* gdk_memory_texture_new:
* @width: the width of the texture
* @height: the height of the texture
* @format: the format of the data
* @bytes: the #GBytes containing the pixel data
* @stride: rowstride for the data
*
* Creates a new texture for a blob of image data.
* The #GBytes must contain @stride x @height pixels
* in the given format.
*
* Returns: A newly-created #GdkTexture
*/
GdkTexture *
gdk_memory_texture_new (int width,
int height,

View File

@ -28,7 +28,7 @@
G_BEGIN_DECLS
/*
/**
* GdkMemoryFormat:
* @GDK_MEMORY_B8G8R8A8_PREMULTIPLIED: 4 bytes; for blue, green, red, alpha.
* The color values are premultiplied with the alpha value.