Integrate AMD FSR2 backend and document SDK bootstrap

This commit is contained in:
Kelsi 2026-03-08 19:56:52 -07:00
parent a24ff375fb
commit 51a8cf565f
11 changed files with 329 additions and 28 deletions

View file

@ -27,6 +27,9 @@ public:
glm::mat4 getViewProjectionMatrix() const { return projectionMatrix * viewMatrix; }
glm::mat4 getUnjitteredViewProjectionMatrix() const { return unjitteredProjectionMatrix * viewMatrix; }
float getAspectRatio() const { return aspectRatio; }
float getFovDegrees() const { return fov; }
float getNearPlane() const { return nearPlane; }
float getFarPlane() const { return farPlane; }
// Sub-pixel jitter for temporal upscaling (FSR 2)
void setJitter(float jx, float jy);