aboutsummaryrefslogtreecommitdiffstats
path: root/pugl/detail/implementation.c
diff options
context:
space:
mode:
Diffstat (limited to 'pugl/detail/implementation.c')
-rw-r--r--pugl/detail/implementation.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/pugl/detail/implementation.c b/pugl/detail/implementation.c
index 1b7d4a4..137bef9 100644
--- a/pugl/detail/implementation.c
+++ b/pugl/detail/implementation.c
@@ -146,21 +146,21 @@ puglInitWindowSize(PuglView* view, int width, int height)
void
puglInitWindowMinSize(PuglView* view, int width, int height)
{
- view->min_width = width;
- view->min_height = height;
+ view->minWidth = width;
+ view->minHeight = height;
}
void
puglInitWindowAspectRatio(PuglView* view,
- int min_x,
- int min_y,
- int max_x,
- int max_y)
+ int minX,
+ int minY,
+ int maxX,
+ int maxY)
{
- view->min_aspect_x = min_x;
- view->min_aspect_y = min_y;
- view->max_aspect_x = max_x;
- view->max_aspect_y = max_y;
+ view->minAspectX = minX;
+ view->minAspectY = minY;
+ view->maxAspectX = maxX;
+ view->maxAspectY = maxY;
}
void
@@ -188,7 +188,7 @@ puglInitResizable(PuglView* view, bool resizable)
void
puglInitTransientFor(PuglView* view, uintptr_t parent)
{
- view->transient_parent = parent;
+ view->transientParent = parent;
}
int