2016-05-30 05:28:29 +02:00
|
|
|
#ifndef EDITOR_SCALE_H
|
|
|
|
#define EDITOR_SCALE_H
|
|
|
|
|
2016-06-05 23:43:45 +02:00
|
|
|
void editor_set_hidpi(bool p_hidpi);
|
2016-05-30 05:28:29 +02:00
|
|
|
bool editor_is_hidpi();
|
|
|
|
|
|
|
|
#define EDSCALE (editor_is_hidpi() ? 2 : 1)
|
|
|
|
#endif // EDITOR_SCALE_H
|