mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-24 06:35:42 +00:00
11 lines
251 B
C++
11 lines
251 B
C++
#pragma once
|
|
#include "common/types.h"
|
|
#include "common/window_info.h"
|
|
#include <optional>
|
|
|
|
struct SDL_Window;
|
|
|
|
namespace SDLUtil {
|
|
std::optional<WindowInfo> GetWindowInfoForSDLWindow(SDL_Window* window);
|
|
float GetDPIScaleFactor(SDL_Window* window);
|
|
} |