gtkmm 3.24.7
|
A Gdk::GLContext is an OpenGL context abstraction. More...
#include <gdkmm/glcontext.h>
Inherits Glib::Object.
Public Member Functions | |
GLContext (GLContext && src) noexcept | |
GLContext & | operator= (GLContext && src) noexcept |
~GLContext () noexcept override | |
GdkGLContext * | gobj () |
Provides access to the underlying C GObject. More... | |
const GdkGLContext * | gobj () const |
Provides access to the underlying C GObject. More... | |
GdkGLContext * | gobj_copy () |
Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. More... | |
Glib::RefPtr< Display > | get_display () |
Retrieves the Gdk::Display the context is created for. More... | |
Glib::RefPtr< const Display > | get_display () const |
Retrieves the Gdk::Display the context is created for. More... | |
Glib::RefPtr< Window > | get_window () |
Retrieves the Gdk::Window used by the context. More... | |
Glib::RefPtr< const Window > | get_window () const |
Retrieves the Gdk::Window used by the context. More... | |
Glib::RefPtr< GLContext > | get_shared_context () |
Retrieves the Gdk::GLContext that this context share data with. More... | |
Glib::RefPtr< const GLContext > | get_shared_context () const |
Retrieves the Gdk::GLContext that this context share data with. More... | |
void | get_version (int & major, int & minor) const |
Retrieves the OpenGL version of the context. More... | |
bool | is_legacy () const |
Whether the Gdk::GLContext is in legacy mode or not. More... | |
void | get_required_version (int & major, int & minor) const |
Retrieves the major and minor version requested by calling gdk_gl_context_set_required_version(). More... | |
void | set_required_version (int major, int minor) |
Sets the major and minor version of OpenGL to request. More... | |
bool | get_debug_enabled () const |
Retrieves the value set using gdk_gl_context_set_debug_enabled(). More... | |
void | set_debug_enabled (bool enabled=true) |
Sets whether the Gdk::GLContext should perform extra validations and run time checking. More... | |
bool | get_forward_compatible () const |
Retrieves the value set using gdk_gl_context_set_forward_compatible(). More... | |
void | set_forward_compatible (bool compatible=true) |
Sets whether the Gdk::GLContext should be forward compatible. More... | |
void | set_use_es (bool use_es=true) |
Requests that GDK create an OpenGL ES context instead of an OpenGL one, if the platform and windowing system allows it. More... | |
void | unset_use_es () |
Undo a previous call to set_use_es(). More... | |
bool | get_use_es () const |
Checks whether the context is using an OpenGL or OpenGL ES profile. More... | |
bool | realize () |
Realizes the given Gdk::GLContext. More... | |
void | make_current () |
Makes the context the current one. More... | |
Glib::PropertyProxy_ReadOnly< Glib::RefPtr< Display > > | property_display () const |
The Gdk::Display used to create the Gdk::GLContext. More... | |
Glib::PropertyProxy_ReadOnly< Glib::RefPtr< GLContext > > | property_shared_context () const |
The Gdk::GLContext that this context is sharing data with, or nullptr More... | |
Glib::PropertyProxy_ReadOnly< Glib::RefPtr< Window > > | property_window () const |
The Gdk::Window the gl context is bound to. More... | |
Static Public Member Functions | |
static GType | get_type () |
Get the GType for this class, for use with the underlying GObject type system. More... | |
static Glib::RefPtr< GLContext > | get_current () |
Retrieves the current Gdk::GLContext. More... | |
static void | clear_current () |
Clears the current Gdk::GLContext. More... | |
Protected Member Functions | |
GLContext () | |
Related Functions | |
(Note that these are not member functions.) | |
Glib::RefPtr< Gdk::GLContext > | wrap (GdkGLContext * object, bool take_copy=false) |
A Glib::wrap() method for this object. More... | |
A Gdk::GLContext is an OpenGL context abstraction.
It's a low-level object, used to implement high-level objects such as Gtk::GLArea on the GTK+ level.
|
noexcept |
|
overridenoexcept |
|
protected |
|
static |
Clears the current Gdk::GLContext.
Any OpenGL call after this function returns will be ignored until gdk_gl_context_make_current() is called.
|
static |
Retrieves the current Gdk::GLContext.
nullptr
. bool Gdk::GLContext::get_debug_enabled | ( | ) | const |
Retrieves the value set using gdk_gl_context_set_debug_enabled().
true
if debugging is enabled. Glib::RefPtr< Display > Gdk::GLContext::get_display | ( | ) |
Retrieves the Gdk::Display the context is created for.
nullptr
. Glib::RefPtr< const Display > Gdk::GLContext::get_display | ( | ) | const |
Retrieves the Gdk::Display the context is created for.
nullptr
. bool Gdk::GLContext::get_forward_compatible | ( | ) | const |
Retrieves the value set using gdk_gl_context_set_forward_compatible().
true
if the context should be forward compatible. void Gdk::GLContext::get_required_version | ( | int & | major, |
int & | minor | ||
) | const |
Retrieves the major and minor version requested by calling gdk_gl_context_set_required_version().
major | Return location for the major version to request. |
minor | Return location for the minor version to request. |
Glib::RefPtr< GLContext > Gdk::GLContext::get_shared_context | ( | ) |
Retrieves the Gdk::GLContext that this context share data with.
nullptr
. Glib::RefPtr< const GLContext > Gdk::GLContext::get_shared_context | ( | ) | const |
Retrieves the Gdk::GLContext that this context share data with.
nullptr
.
|
static |
Get the GType for this class, for use with the underlying GObject type system.
bool Gdk::GLContext::get_use_es | ( | ) | const |
Checks whether the context is using an OpenGL or OpenGL ES profile.
true
if the Gdk::GLContext is using an OpenGL ES profile. void Gdk::GLContext::get_version | ( | int & | major, |
int & | minor | ||
) | const |
Retrieves the OpenGL version of the context.
The context must be realized prior to calling this function.
major | Return location for the major version. |
minor | Return location for the minor version. |
Glib::RefPtr< Window > Gdk::GLContext::get_window | ( | ) |
Glib::RefPtr< const Window > Gdk::GLContext::get_window | ( | ) | const |
|
inline |
Provides access to the underlying C GObject.
|
inline |
Provides access to the underlying C GObject.
GdkGLContext * Gdk::GLContext::gobj_copy | ( | ) |
Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs.
bool Gdk::GLContext::is_legacy | ( | ) | const |
Whether the Gdk::GLContext is in legacy mode or not.
The Gdk::GLContext must be realized before calling this function.
When realizing a GL context, GDK will try to use the OpenGL 3.2 core profile; this profile removes all the OpenGL API that was deprecated prior to the 3.2 version of the specification. If the realization is successful, this function will return false
.
If the underlying OpenGL implementation does not support core profiles, GDK will fall back to a pre-3.2 compatibility profile, and this function will return true
.
You can use the value returned by this function to decide which kind of OpenGL API to use, or whether to do extension discovery, or what kind of shader programs to load.
true
if the GL context is in legacy mode. void Gdk::GLContext::make_current | ( | ) |
Makes the context the current one.
Glib::PropertyProxy_ReadOnly< Glib::RefPtr< Display > > Gdk::GLContext::property_display | ( | ) | const |
The Gdk::Display used to create the Gdk::GLContext.
Glib::PropertyProxy_ReadOnly< Glib::RefPtr< GLContext > > Gdk::GLContext::property_shared_context | ( | ) | const |
The Gdk::GLContext that this context is sharing data with, or nullptr
Glib::PropertyProxy_ReadOnly< Glib::RefPtr< Window > > Gdk::GLContext::property_window | ( | ) | const |
The Gdk::Window the gl context is bound to.
bool Gdk::GLContext::realize | ( | ) |
Realizes the given Gdk::GLContext.
It is safe to call this function on a realized Gdk::GLContext.
true
if the context is realized.Glib::Error |
void Gdk::GLContext::set_debug_enabled | ( | bool | enabled = true | ) |
Sets whether the Gdk::GLContext should perform extra validations and run time checking.
This is useful during development, but has additional overhead.
The Gdk::GLContext must not be realized or made current prior to calling this function.
enabled | Whether to enable debugging in the context. |
void Gdk::GLContext::set_forward_compatible | ( | bool | compatible = true | ) |
Sets whether the Gdk::GLContext should be forward compatible.
Forward compatibile contexts must not support OpenGL functionality that has been marked as deprecated in the requested version; non-forward compatible contexts, on the other hand, must support both deprecated and non deprecated functionality.
The Gdk::GLContext must not be realized or made current prior to calling this function.
compatible | Whether the context should be forward compatible. |
void Gdk::GLContext::set_required_version | ( | int | major, |
int | minor | ||
) |
Sets the major and minor version of OpenGL to request.
Setting major and minor to zero will use the default values.
The Gdk::GLContext must not be realized or made current prior to calling this function.
major | The major version to request. |
minor | The minor version to request. |
void Gdk::GLContext::set_use_es | ( | bool | use_es = true | ) |
Requests that GDK create an OpenGL ES context instead of an OpenGL one, if the platform and windowing system allows it.
The GLContext must not have been realized.
By default, GDK will attempt to automatically detect whether the underlying GL implementation is OpenGL or OpenGL ES once the GLContext is realized.
You should check the return value of get_use_es() after calling realize() to decide whether to use the OpenGL or OpenGL ES API, extensions, or shaders.
use_es | Whether the context should use OpenGL ES instead of OpenGL. |
void Gdk::GLContext::unset_use_es | ( | ) |
Undo a previous call to set_use_es().
GDK will attempt to automatically detect whether the underlying GL implementation is OpenGL or OpenGL ES once the GLContext is realized.
|
related |
A Glib::wrap() method for this object.
object | The C instance. |
take_copy | False if the result should take ownership of the C instance. True if it should take a new copy or ref. |