aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-06-07 21:19:25 -0400
committerDavid Robillard <d@drobilla.net>2022-06-07 21:19:25 -0400
commit6115f80dfb76ffbdeeacab5fc33ea4fb5eb677fd (patch)
tree50d7721e4d9114e3b769034b8ed8c3608a9200f1 /src
parentce5b4cdba3fffac81bfa7ee4a3bffd99fe7f9935 (diff)
downloadpugl-6115f80dfb76ffbdeeacab5fc33ea4fb5eb677fd.tar.gz
pugl-6115f80dfb76ffbdeeacab5fc33ea4fb5eb677fd.tar.bz2
pugl-6115f80dfb76ffbdeeacab5fc33ea4fb5eb677fd.zip
Remove unnecessary forward-compatibility code
Diffstat (limited to 'src')
-rw-r--r--src/implementation.c10
-rw-r--r--src/x11.c4
2 files changed, 3 insertions, 11 deletions
diff --git a/src/implementation.c b/src/implementation.c
index e7ae5e4..84d9eea 100644
--- a/src/implementation.c
+++ b/src/implementation.c
@@ -216,18 +216,14 @@ puglSetViewHint(PuglView* view, PuglViewHint hint, int value)
}
}
- if (hint < PUGL_NUM_VIEW_HINTS) {
- view->hints[hint] = value;
- return PUGL_SUCCESS;
- }
-
- return PUGL_BAD_PARAMETER;
+ view->hints[hint] = value;
+ return PUGL_SUCCESS;
}
int
puglGetViewHint(const PuglView* view, PuglViewHint hint)
{
- return (hint < PUGL_NUM_VIEW_HINTS) ? view->hints[hint] : PUGL_DONT_CARE;
+ return view->hints[hint];
}
const char*
diff --git a/src/x11.c b/src/x11.c
index 1be6a8e..c7fdad2 100644
--- a/src/x11.c
+++ b/src/x11.c
@@ -1643,10 +1643,6 @@ puglSetSizeHint(PuglView* const view,
const PuglSpan width,
const PuglSpan height)
{
- if ((unsigned)hint > (unsigned)PUGL_MAX_ASPECT) {
- return PUGL_BAD_PARAMETER;
- }
-
view->sizeHints[hint].width = width;
view->sizeHints[hint].height = height;
return updateSizeHints(view);