gdk: Cosmetic rewording of draw context docs

Avoid draw context <> drawing context confusion,
as far as possible.
This commit is contained in:
Matthias Clasen 2017-12-26 14:10:54 -05:00
parent fa9037aed5
commit 5ba5f2c0c0
3 changed files with 6 additions and 6 deletions

View File

@ -28,7 +28,7 @@
/**
* SECTION:gdkdrawcontext
* @Title: GdkDrawContext
* @Short_description: Drawing context base class
* @Short_description: Base class for draw contexts
*
* #GdkDrawContext is the base object used by contexts implementing different
* rendering methods, such as #GdkGLContext or #GdkVulkanContext. It provides

View File

@ -21,10 +21,10 @@
/**
* SECTION:gdkglcontext
* @Title: GdkGLContext
* @Short_description: OpenGL context
* @Short_description: OpenGL draw context
*
* #GdkGLContext is an object representing the platform-specific
* OpenGL drawing context.
* OpenGL draw context.
*
* #GdkGLContexts are created for a #GdkWindow using
* gdk_window_create_gl_context(), and the context will match the

View File

@ -31,16 +31,16 @@
/**
* SECTION:gdkvulkancontext
* @Title: GdkVulkanContext
* @Short_description: Vulkan context
* @Short_description: Vulkan draw context
*
* #GdkVulkanContext is an object representing the platform-specific
* Vulkan drawing context.
* Vulkan draw context.
*
* #GdkVulkanContexts are created for a #GdkWindow using
* gdk_window_create_vulkan_context(), and the context will match the
* the characteristics of the window.
*
* Support for #GdkGLContext is platform-specific, context creation
* Support for #GdkVulkanContext is platform-specific, context creation
* can fail, returning %NULL context.
*/