diff options
author | Alan Jeffrey <ajeffrey@mozilla.com> | 2019-08-13 13:50:50 -0500 |
---|---|---|
committer | Alan Jeffrey <ajeffrey@mozilla.com> | 2019-08-13 13:50:50 -0500 |
commit | b4565dd3e2220cf2d737029a044e8dd262a1b7a5 (patch) | |
tree | 7b8482292d13c90ef5ba1f3a5b79eabfdacc8eea /support/magicleap/Servo2D/code/src/Servo2D.cpp | |
parent | db4edaee8725b1ce194cdec9c276ce4a57b5fe9a (diff) | |
download | servo-b4565dd3e2220cf2d737029a044e8dd262a1b7a5.tar.gz servo-b4565dd3e2220cf2d737029a044e8dd262a1b7a5.zip |
Reduce magicleap servo screen resolution
Diffstat (limited to 'support/magicleap/Servo2D/code/src/Servo2D.cpp')
-rw-r--r-- | support/magicleap/Servo2D/code/src/Servo2D.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/support/magicleap/Servo2D/code/src/Servo2D.cpp b/support/magicleap/Servo2D/code/src/Servo2D.cpp index 0dd8201baf8..71abf7424b7 100644 --- a/support/magicleap/Servo2D/code/src/Servo2D.cpp +++ b/support/magicleap/Servo2D/code/src/Servo2D.cpp @@ -18,8 +18,8 @@ #include <string.h> // The viewport dimensions (in px). -const int VIEWPORT_W = 1280; -const int VIEWPORT_H = 720; +const int VIEWPORT_W = 852; +const int VIEWPORT_H = 480; // The hidpi factor. const float HIDPI = 1.0; |