diff options
author | Sven Gothel <[email protected]> | 2014-05-23 00:00:48 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2014-05-23 00:00:48 +0200 |
commit | 98ed02cdb7b325d8afde596a5ef04f97be2018d4 (patch) | |
tree | 57969bdf241d493cc110b29422d3c488fcfacc65 /src/nativewindow/native/macosx/OSXmisc.m | |
parent | fb57c652fee6be133990cd7afbbd2fdfc084afaa (diff) |
Bug 742 HiDPI: [Core API Change] Distinguish window-units and pixel-units: Refine commit fb57c652fee6be133990cd7afbbd2fdfc084afaa
- NEWT Screen, Monitor, MonitorMode, ..
- All Units are in pixel units, not window units!
- On OSX HiDPI, we report the current scaled monitor resolution,
instead of the native pixel sized.
Need to filter out those, i.e. report only native unscaled resolutions,
since out MonitorMode analogy is per MonitorDevice and not per window!
- Fix usage (one by one) of
- Screen and Monitor viewport usage
Diffstat (limited to 'src/nativewindow/native/macosx/OSXmisc.m')
-rw-r--r-- | src/nativewindow/native/macosx/OSXmisc.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nativewindow/native/macosx/OSXmisc.m b/src/nativewindow/native/macosx/OSXmisc.m index 15547ffee..0250bb7d1 100644 --- a/src/nativewindow/native/macosx/OSXmisc.m +++ b/src/nativewindow/native/macosx/OSXmisc.m @@ -41,7 +41,7 @@ #include <jawt_md.h> -#define VERBOSE 1 +// #define VERBOSE 1 // #ifdef VERBOSE // #define DBG_PRINT(...) NSLog(@ ## __VA_ARGS__) |