Skip to content

Commit

Permalink
Add puglGetViewHint()
Browse files Browse the repository at this point in the history
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).
  • Loading branch information
drobilla committed Oct 4, 2020
1 parent 6ca124d commit cc5c38b
Show file tree
Hide file tree
Showing 12 changed files with 310 additions and 8 deletions.
10 changes: 10 additions & 0 deletions pugl/detail/implementation.c
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,16 @@ puglSetViewHint(PuglView* view, PuglViewHint hint, int value)
return PUGL_BAD_PARAMETER;
}

int
puglGetViewHint(const PuglView* view, PuglViewHint hint)
{
if (hint < PUGL_NUM_VIEW_HINTS) {
return view->hints[hint];
}

return PUGL_DONT_CARE;
}

PuglStatus
puglSetParentWindow(PuglView* view, PuglNativeView parent)
{
Expand Down
14 changes: 14 additions & 0 deletions pugl/detail/mac.m
Original file line number Diff line number Diff line change
Expand Up @@ -866,6 +866,20 @@ - (void) windowDidResignKey:(NSNotification*)notification
const NSScreen* const screen = [NSScreen mainScreen];
const double scaleFactor = [screen backingScaleFactor];

// Getting depth from the display mode seems tedious, just set usual values
if (view->hints[PUGL_RED_BITS] == PUGL_DONT_CARE) {
view->hints[PUGL_RED_BITS] = 8;
}
if (view->hints[PUGL_BLUE_BITS] == PUGL_DONT_CARE) {
view->hints[PUGL_BLUE_BITS] = 8;
}
if (view->hints[PUGL_GREEN_BITS] == PUGL_DONT_CARE) {
view->hints[PUGL_GREEN_BITS] = 8;
}
if (view->hints[PUGL_ALPHA_BITS] == PUGL_DONT_CARE) {
view->hints[PUGL_ALPHA_BITS] = 8;
}

if (view->frame.width == 0.0 && view->frame.height == 0.0) {
if (view->defaultWidth == 0.0 && view->defaultHeight == 0.0) {
return PUGL_BAD_CONFIGURATION;
Expand Down
30 changes: 27 additions & 3 deletions pugl/detail/mac_gl.m
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,36 @@ - (id) initWithFrame:(NSRect)frame
? NSOpenGLProfileVersion4_1Core
: NSOpenGLProfileVersion3_2Core));

NSOpenGLPixelFormatAttribute pixelAttribs[16] = {
// Set attributes to default if they are unset
// (There is no GLX_DONT_CARE equivalent on MacOS)
if (puglview->hints[PUGL_DEPTH_BITS] == PUGL_DONT_CARE) {
puglview->hints[PUGL_DEPTH_BITS] = 0;
}
if (puglview->hints[PUGL_STENCIL_BITS] == PUGL_DONT_CARE) {
puglview->hints[PUGL_STENCIL_BITS] = 0;
}
if (puglview->hints[PUGL_SAMPLES] == PUGL_DONT_CARE) {
puglview->hints[PUGL_SAMPLES] = 1;
}
if (puglview->hints[PUGL_DOUBLE_BUFFER] == PUGL_DONT_CARE) {
puglview->hints[PUGL_DOUBLE_BUFFER] = 1;
}
if (puglview->hints[PUGL_SWAP_INTERVAL] == PUGL_DONT_CARE) {
puglview->hints[PUGL_SWAP_INTERVAL] = 1;
}

const unsigned colorSize = (unsigned)(puglview->hints[PUGL_RED_BITS] +
puglview->hints[PUGL_BLUE_BITS] +
puglview->hints[PUGL_GREEN_BITS] +
puglview->hints[PUGL_ALPHA_BITS]);

NSOpenGLPixelFormatAttribute pixelAttribs[17] = {
NSOpenGLPFADoubleBuffer,
NSOpenGLPFAAccelerated,
NSOpenGLPFAOpenGLProfile, profile,
NSOpenGLPFAColorSize, 32,
NSOpenGLPFADepthSize, 32,
NSOpenGLPFAColorSize, colorSize,
NSOpenGLPFADepthSize, (unsigned)puglview->hints[PUGL_DEPTH_BITS],
NSOpenGLPFAStencilSize, (unsigned)puglview->hints[PUGL_STENCIL_BITS],
NSOpenGLPFAMultisample, samples ? 1 : 0,
NSOpenGLPFASampleBuffers, samples ? 1 : 0,
NSOpenGLPFASamples, samples,
Expand Down
14 changes: 14 additions & 0 deletions pugl/detail/win.c
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,20 @@ puglRealize(PuglView* view)
{
PuglInternals* impl = view->impl;

// Getting depth from the display mode seems tedious, just set usual values
if (view->hints[PUGL_RED_BITS] == PUGL_DONT_CARE) {
view->hints[PUGL_RED_BITS] = 8;
}
if (view->hints[PUGL_BLUE_BITS] == PUGL_DONT_CARE) {
view->hints[PUGL_BLUE_BITS] = 8;
}
if (view->hints[PUGL_GREEN_BITS] == PUGL_DONT_CARE) {
view->hints[PUGL_GREEN_BITS] = 8;
}
if (view->hints[PUGL_ALPHA_BITS] == PUGL_DONT_CARE) {
view->hints[PUGL_ALPHA_BITS] = 8;
}

// Get refresh rate for resize draw timer
DEVMODEA devMode = {0};
EnumDisplaySettingsA(NULL, ENUM_CURRENT_SETTINGS, &devMode);
Expand Down
18 changes: 18 additions & 0 deletions pugl/detail/win_gl.c
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,24 @@ puglWinGlConfigure(PuglView* view)
{
PuglInternals* impl = view->impl;

// Set attributes to default if they are unset
// (There is no GLX_DONT_CARE equivalent on Windows)
if (view->hints[PUGL_DEPTH_BITS] == PUGL_DONT_CARE) {
view->hints[PUGL_DEPTH_BITS] = 0;
}
if (view->hints[PUGL_STENCIL_BITS] == PUGL_DONT_CARE) {
view->hints[PUGL_STENCIL_BITS] = 0;
}
if (view->hints[PUGL_SAMPLES] == PUGL_DONT_CARE) {
view->hints[PUGL_SAMPLES] = 1;
}
if (view->hints[PUGL_DOUBLE_BUFFER] == PUGL_DONT_CARE) {
view->hints[PUGL_DOUBLE_BUFFER] = 1;
}
if (view->hints[PUGL_SWAP_INTERVAL] == PUGL_DONT_CARE) {
view->hints[PUGL_SWAP_INTERVAL] = 1;
}

// clang-format off
const int pixelAttrs[] = {
WGL_DRAW_TO_WINDOW_ARB, GL_TRUE,
Expand Down
5 changes: 5 additions & 0 deletions pugl/detail/x11.h
Original file line number Diff line number Diff line change
Expand Up @@ -83,5 +83,10 @@ puglX11StubConfigure(PuglView* view)
pat.screen = impl->screen;
impl->vi = XGetVisualInfo(impl->display, VisualScreenMask, &pat, &n);

view->hints[PUGL_RED_BITS] = impl->vi->bits_per_rgb;
view->hints[PUGL_GREEN_BITS] = impl->vi->bits_per_rgb;
view->hints[PUGL_BLUE_BITS] = impl->vi->bits_per_rgb;
view->hints[PUGL_ALPHA_BITS] = 0;

return PUGL_SUCCESS;
}
24 changes: 23 additions & 1 deletion pugl/detail/x11_gl.c
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ puglX11GlConfigure(PuglView* view)
GLX_X_VISUAL_TYPE, GLX_TRUE_COLOR,
GLX_DRAWABLE_TYPE, GLX_WINDOW_BIT,
GLX_RENDER_TYPE, GLX_RGBA_BIT,
GLX_SAMPLES, view->hints[PUGL_SAMPLES],
GLX_SAMPLES, puglX11GlHintValue(view->hints[PUGL_SAMPLES]),
GLX_RED_SIZE, puglX11GlHintValue(view->hints[PUGL_RED_BITS]),
GLX_GREEN_SIZE, puglX11GlHintValue(view->hints[PUGL_GREEN_BITS]),
GLX_BLUE_SIZE, puglX11GlHintValue(view->hints[PUGL_BLUE_BITS]),
Expand All @@ -91,6 +91,23 @@ puglX11GlConfigure(PuglView* view)
surface->fb_config = fbc[0];
impl->vi = glXGetVisualFromFBConfig(impl->display, fbc[0]);

view->hints[PUGL_RED_BITS] = puglX11GlGetAttrib(
display, fbc[0], GLX_RED_SIZE);
view->hints[PUGL_GREEN_BITS] = puglX11GlGetAttrib(
display, fbc[0], GLX_GREEN_SIZE);
view->hints[PUGL_BLUE_BITS] = puglX11GlGetAttrib(
display, fbc[0], GLX_BLUE_SIZE);
view->hints[PUGL_ALPHA_BITS] = puglX11GlGetAttrib(
display, fbc[0], GLX_ALPHA_SIZE);
view->hints[PUGL_DEPTH_BITS] = puglX11GlGetAttrib(
display, fbc[0], GLX_DEPTH_SIZE);
view->hints[PUGL_STENCIL_BITS] = puglX11GlGetAttrib(
display, fbc[0], GLX_STENCIL_SIZE);
view->hints[PUGL_SAMPLES] = puglX11GlGetAttrib(
display, fbc[0], GLX_SAMPLES);
view->hints[PUGL_DOUBLE_BUFFER] = puglX11GlGetAttrib(
display, fbc[0], GLX_DOUBLEBUFFER);

char msg[128];

snprintf(
Expand Down Expand Up @@ -182,6 +199,11 @@ puglX11GlCreate(PuglView* view)
GLX_DOUBLEBUFFER,
&view->hints[PUGL_DOUBLE_BUFFER]);

glXQueryDrawable(display,
impl->win,
GLX_SWAP_INTERVAL_EXT,
(unsigned int*)&view->hints[PUGL_SWAP_INTERVAL]);

return PUGL_SUCCESS;
}

Expand Down
10 changes: 10 additions & 0 deletions pugl/pugl.h
Original file line number Diff line number Diff line change
Expand Up @@ -938,6 +938,16 @@ puglSetEventFunc(PuglView* view, PuglEventFunc eventFunc);
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
Expand Down
6 changes: 6 additions & 0 deletions pugl/pugl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -418,6 +418,12 @@ class View : protected detail::Wrapper<PuglView, puglFreeView>
puglSetViewHint(cobj(), static_cast<PuglViewHint>(hint), value));
}

/// @copydoc puglGetViewHint
int getHint(ViewHint hint)
{
return puglGetViewHint(cobj(), static_cast<PuglViewHint>(hint));
}

/**
@}
@name Frame
Expand Down
86 changes: 86 additions & 0 deletions test/test_gl_hints.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
/*
Copyright 2020 David Robillard <d@drobilla.net>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THIS SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/

/*
Tests that all hints are set to real values after a view is realized.
*/

#undef NDEBUG

#include "test_utils.h"

#include "pugl/pugl.h"
#include "pugl/pugl_gl.h"

#include <assert.h>

static PuglStatus
onEvent(PuglView* view, const PuglEvent* event)
{
(void)view;
(void)event;

return PUGL_SUCCESS;
}

int
main(void)
{
PuglWorld* const world = puglNewWorld(PUGL_PROGRAM, 0);
PuglView* const view = puglNewView(world);

// Set up view
puglSetClassName(world, "Pugl Test");
puglSetBackend(view, puglGlBackend());
puglSetEventFunc(view, onEvent);
puglSetDefaultSize(view, 512, 512);

// Set all hints that support it to PUGL_DONT_CARE
assert(!puglSetViewHint(view, PUGL_RED_BITS, PUGL_DONT_CARE));
assert(!puglSetViewHint(view, PUGL_GREEN_BITS, PUGL_DONT_CARE));
assert(!puglSetViewHint(view, PUGL_BLUE_BITS, PUGL_DONT_CARE));
assert(!puglSetViewHint(view, PUGL_ALPHA_BITS, PUGL_DONT_CARE));
assert(!puglSetViewHint(view, PUGL_DEPTH_BITS, PUGL_DONT_CARE));
assert(!puglSetViewHint(view, PUGL_STENCIL_BITS, PUGL_DONT_CARE));
assert(!puglSetViewHint(view, PUGL_SAMPLES, PUGL_DONT_CARE));
assert(!puglSetViewHint(view, PUGL_DOUBLE_BUFFER, PUGL_DONT_CARE));

// Realize view and print all hints for debugging convenience
assert(!puglRealize(view));

// Check that no hints are set to PUGL_DONT_CARE
assert(puglGetViewHint(view, PUGL_USE_COMPAT_PROFILE) != PUGL_DONT_CARE);
assert(puglGetViewHint(view, PUGL_USE_DEBUG_CONTEXT) != PUGL_DONT_CARE);
assert(puglGetViewHint(view, PUGL_CONTEXT_VERSION_MAJOR) != PUGL_DONT_CARE);
assert(puglGetViewHint(view, PUGL_CONTEXT_VERSION_MINOR) != PUGL_DONT_CARE);
assert(puglGetViewHint(view, PUGL_RED_BITS) != PUGL_DONT_CARE);
assert(puglGetViewHint(view, PUGL_GREEN_BITS) != PUGL_DONT_CARE);
assert(puglGetViewHint(view, PUGL_BLUE_BITS) != PUGL_DONT_CARE);
assert(puglGetViewHint(view, PUGL_ALPHA_BITS) != PUGL_DONT_CARE);
assert(puglGetViewHint(view, PUGL_DEPTH_BITS) != PUGL_DONT_CARE);
assert(puglGetViewHint(view, PUGL_STENCIL_BITS) != PUGL_DONT_CARE);
assert(puglGetViewHint(view, PUGL_SAMPLES) != PUGL_DONT_CARE);
assert(puglGetViewHint(view, PUGL_DOUBLE_BUFFER) != PUGL_DONT_CARE);
assert(puglGetViewHint(view, PUGL_SWAP_INTERVAL) != PUGL_DONT_CARE);
assert(puglGetViewHint(view, PUGL_RESIZABLE) != PUGL_DONT_CARE);
assert(puglGetViewHint(view, PUGL_IGNORE_KEY_REPEAT) != PUGL_DONT_CARE);

// Tear down
puglFreeView(view);
puglFreeWorld(world);

return 0;
}
77 changes: 77 additions & 0 deletions test/test_stub_hints.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
/*
Copyright 2020 David Robillard <d@drobilla.net>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THIS SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/

/*
Tests that all hints are set to real values after a view is realized.
*/

#undef NDEBUG

#include "test_utils.h"

#include "pugl/pugl.h"
#include "pugl/pugl_stub.h"

#include <assert.h>

static PuglStatus
onEvent(PuglView* view, const PuglEvent* event)
{
(void)view;
(void)event;

return PUGL_SUCCESS;
}

int
main(void)
{
PuglWorld* const world = puglNewWorld(PUGL_PROGRAM, 0);
PuglView* const view = puglNewView(world);

// Set up view
puglSetClassName(world, "Pugl Test");
puglSetBackend(view, puglStubBackend());
puglSetEventFunc(view, onEvent);
puglSetDefaultSize(view, 512, 512);

// Set all relevant hints that support it to PUGL_DONT_CARE
assert(!puglSetViewHint(view, PUGL_RED_BITS, PUGL_DONT_CARE));
assert(!puglSetViewHint(view, PUGL_GREEN_BITS, PUGL_DONT_CARE));
assert(!puglSetViewHint(view, PUGL_BLUE_BITS, PUGL_DONT_CARE));
assert(!puglSetViewHint(view, PUGL_ALPHA_BITS, PUGL_DONT_CARE));

// Realize view and print all hints for debugging convenience
assert(!puglRealize(view));

// Check that no relevant hints are set to PUGL_DONT_CARE
assert(puglGetViewHint(view, PUGL_USE_COMPAT_PROFILE) != PUGL_DONT_CARE);
assert(puglGetViewHint(view, PUGL_USE_DEBUG_CONTEXT) != PUGL_DONT_CARE);
assert(puglGetViewHint(view, PUGL_CONTEXT_VERSION_MAJOR) != PUGL_DONT_CARE);
assert(puglGetViewHint(view, PUGL_CONTEXT_VERSION_MINOR) != PUGL_DONT_CARE);
assert(puglGetViewHint(view, PUGL_RED_BITS) != PUGL_DONT_CARE);
assert(puglGetViewHint(view, PUGL_GREEN_BITS) != PUGL_DONT_CARE);
assert(puglGetViewHint(view, PUGL_BLUE_BITS) != PUGL_DONT_CARE);
assert(puglGetViewHint(view, PUGL_ALPHA_BITS) != PUGL_DONT_CARE);
assert(puglGetViewHint(view, PUGL_RESIZABLE) != PUGL_DONT_CARE);
assert(puglGetViewHint(view, PUGL_IGNORE_KEY_REPEAT) != PUGL_DONT_CARE);

// Tear down
puglFreeView(view);
puglFreeWorld(world);

return 0;
}
Loading

0 comments on commit cc5c38b

Please sign in to comment.