Add note and todo to GetWindowScaleDPI
This commit is contained in:
parent
c66eb49199
commit
f26c96db75
|
|
@ -827,8 +827,14 @@ Vector2 GetWindowPosition(void)
|
||||||
// Get window scale DPI factor for current monitor
|
// Get window scale DPI factor for current monitor
|
||||||
Vector2 GetWindowScaleDPI(void)
|
Vector2 GetWindowScaleDPI(void)
|
||||||
{
|
{
|
||||||
|
Vector2 scale = { 1.0f, 1.0f };
|
||||||
|
|
||||||
|
// NOTE: SDL_GetWindowDisplayScale was only added on SDL3
|
||||||
|
// see https://wiki.libsdl.org/SDL3/SDL_GetWindowDisplayScale
|
||||||
|
// TODO: Implement the window scale factor calculation manually.
|
||||||
TRACELOG(LOG_WARNING, "GetWindowScaleDPI() not implemented on target platform");
|
TRACELOG(LOG_WARNING, "GetWindowScaleDPI() not implemented on target platform");
|
||||||
return (Vector2){ 1.0f, 1.0f };
|
|
||||||
|
return scale;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Set clipboard text content
|
// Set clipboard text content
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user