Files
lime/project/include/system/Display.h
Josh Tynjala af2299670f Display: add safeArea property
display.safeArea is a subset of display.bounds that accounts for notches, holes, or other display cutouts.
2025-01-30 15:56:27 -08:00

21 lines
226 B
C++

#ifndef LIME_SYSTEM_DISPLAY_H
#define LIME_SYSTEM_DISPLAY_H
#include <math/Rectangle.h>
namespace lime {
class Display {
public:
static void GetSafeAreaInsets (int displayIndex, Rectangle * rect);
};
}
#endif