mirror of
https://github.com/Relintai/sdl2_frt.git
synced 2024-12-29 20:27:12 +01:00
Fixed direction of y adjustment for new orthographic projection in the metal renderer
This commit is contained in:
parent
fa86807ceb
commit
b3b5c47366
@ -825,7 +825,7 @@ adjustx(const float val)
|
|||||||
static inline float
|
static inline float
|
||||||
adjusty(const float val)
|
adjusty(const float val)
|
||||||
{
|
{
|
||||||
return (val - 0.5f);
|
return (val + 0.5f);
|
||||||
}
|
}
|
||||||
|
|
||||||
// normalize a value from 0.0f to len into 0.0f to 1.0f.
|
// normalize a value from 0.0f to len into 0.0f to 1.0f.
|
||||||
|
Loading…
Reference in New Issue
Block a user