There was an error while loading. Please reload this page.
1 parent 2668f16 commit ab35551Copy full SHA for ab35551
1 file changed
src/Processing.h
@@ -1385,6 +1385,10 @@ static constexpr int DISABLE_KEY_REPEAT = 11;
1385
static constexpr int ENABLE_KEY_REPEAT = -11;
1386
static constexpr int DISABLE_ASYNC_SAVEFRAME = 12;
1387
static constexpr int ENABLE_ASYNC_SAVEFRAME = -12;
1388
+// Image interpolation modes
1389
+static constexpr int NEAREST_NEIGHBOR = 0;
1390
+static constexpr int BILINEAR = 1;
1391
+static constexpr int BICUBIC = 2;
1392
1393
// Cursor shapes (map to GLFW)
1394
static constexpr int ARROW = GLFW_ARROW_CURSOR;
0 commit comments