Refactor glViewport() call

This commit is contained in:
Elias Batek 2024-01-05 02:11:50 +01:00
parent 9f792bdfeb
commit 95726831d1
1 changed files with 69 additions and 42 deletions

View File

@ -291,6 +291,7 @@ struct Pixmap {
} }
} }
// viewport math
private @safe pure nothrow @nogc { private @safe pure nothrow @nogc {
// keep aspect ratio (contain) // keep aspect ratio (contain)
@ -336,6 +337,72 @@ private @safe pure nothrow @nogc {
} }
} }
///
struct Viewport {
Size size; ///
Point offset; ///
}
/++
Calls `glViewport` with the data from the provided [Viewport].
+/
void glViewportPMP(const ref Viewport vp) {
glViewport(vp.offset.x, vp.offset.y, vp.size.width, vp.size.height);
}
/++
Calculates the dimensions and position of the viewport for the provided config.
$(TIP
Primary use case for this is [PixmapRenderer] implementations.
)
+/
Viewport calculateViewport(const ref PresenterConfig config) @safe pure nothrow @nogc {
Size size;
final switch (config.renderer.scaling) {
case Scaling.none:
size = config.renderer.resolution;
break;
case Scaling.stretch:
size = config.window.size;
break;
case Scaling.contain:
const float scaleF = karContainScalingFactorF(config.renderer.resolution, config.window.size);
size = Size(
typeCast!int(scaleF * config.renderer.resolution.width),
typeCast!int(scaleF * config.renderer.resolution.height),
);
break;
case Scaling.integer:
const int scaleI = karContainScalingFactorInt(config.renderer.resolution, config.window.size);
size = (config.renderer.resolution * scaleI);
break;
case Scaling.intHybrid:
if (karContainNeedsDownscaling(config.renderer.resolution, config.window.size)) {
goto case Scaling.contain;
}
goto case Scaling.integer;
case Scaling.cover:
const float fillF = karCoverScalingFactorF(config.renderer.resolution, config.window.size);
size = Size(
typeCast!int(fillF * config.renderer.resolution.width),
typeCast!int(fillF * config.renderer.resolution.height),
);
break;
}
const Point offset = offsetCenter(size, config.window.size);
return Viewport(size, offset);
}
/++ /++
Scaling/Fit Modes Scaling/Fit Modes
@ -540,7 +607,6 @@ final class OpenGl3PixmapRenderer : PixmapRenderer {
return WantsOpenGl(3, 0, false); return WantsOpenGl(3, 0, false);
} }
// TODO: make this ctor?
public void setup(PresenterObjectsContainer* pro) { public void setup(PresenterObjectsContainer* pro) {
_poc = pro; _poc = pro;
_poc.window.visibleForTheFirstTime = &this.visibleForTheFirstTime; _poc.window.visibleForTheFirstTime = &this.visibleForTheFirstTime;
@ -672,48 +738,9 @@ final class OpenGl3PixmapRenderer : PixmapRenderer {
} }
public void reconfigure() { public void reconfigure() {
Size viewport; const Viewport viewport = calculateViewport(_poc.config);
glViewportPMP(viewport);
final switch (_poc.config.renderer.scaling) {
case Scaling.none:
viewport = _poc.config.renderer.resolution;
break;
case Scaling.stretch:
viewport = _poc.config.window.size;
break;
case Scaling.contain:
const float scaleF = karContainScalingFactorF(_poc.config.renderer.resolution, _poc.config.window.size);
viewport = Size(
typeCast!int(scaleF * _poc.config.renderer.resolution.width),
typeCast!int(scaleF * _poc.config.renderer.resolution.height),
);
break;
case Scaling.integer:
const int scaleI = karContainScalingFactorInt(_poc.config.renderer.resolution, _poc.config.window.size);
viewport = (_poc.config.renderer.resolution * scaleI);
break;
case Scaling.intHybrid:
if (karContainNeedsDownscaling(_poc.config.renderer.resolution, _poc.config.window.size)) {
goto case Scaling.contain;
}
goto case Scaling.integer;
case Scaling.cover:
const float fillF = karCoverScalingFactorF(_poc.config.renderer.resolution, _poc.config.window.size);
viewport = Size(
typeCast!int(fillF * _poc.config.renderer.resolution.width),
typeCast!int(fillF * _poc.config.renderer.resolution.height),
);
break;
}
const Point viewportPos = offsetCenter(viewport, _poc.config.window.size);
glViewport(viewportPos.x, viewportPos.y, viewport.width, viewport.height);
this.setupTexture(); this.setupTexture();
_clear = true; _clear = true;
} }