diff options
author | David Robillard <d@drobilla.net> | 2020-10-03 19:38:53 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-10-04 12:51:32 +0200 |
commit | cc5c38b1aaf93157f5558df95383491a6163cc5a (patch) | |
tree | a1b858c00ad84a0479b98247f84e608ac0d62866 /pugl/pugl.h | |
parent | 6ca124d3787a901129252a2e26c091da1c1ff455 (diff) | |
download | pugl-cc5c38b1aaf93157f5558df95383491a6163cc5a.tar.gz pugl-cc5c38b1aaf93157f5558df95383491a6163cc5a.tar.bz2 pugl-cc5c38b1aaf93157f5558df95383491a6163cc5a.zip |
Add puglGetViewHint()
This allows retrieving properties of the view that may be needed, such as the
actual bit depth (which may vary from the suggested depth provided as a hint).
Diffstat (limited to 'pugl/pugl.h')
-rw-r--r-- | pugl/pugl.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/pugl/pugl.h b/pugl/pugl.h index c32a17d..7e27425 100644 --- a/pugl/pugl.h +++ b/pugl/pugl.h @@ -939,6 +939,16 @@ PUGL_API PuglStatus puglSetViewHint(PuglView* view, PuglViewHint hint, int value); /** + Get the value for a view hint. + + If the view has been realized, this can be used to get the actual value of a + hint which was initially set to PUGL_DONT_CARE, or has been adjusted from + the suggested value. +*/ +PUGL_API int +puglGetViewHint(const PuglView* view, PuglViewHint hint); + +/** @} @anchor frame @name Frame |