diff options
author | Andreas Grois <andi@grois.info> | 2018-03-10 13:55:50 +0100 |
---|---|---|
committer | Andreas Grois <andi@grois.info> | 2018-03-10 13:55:50 +0100 |
commit | a0afe4bf8c011222b85c481ae209b09f75189858 (patch) | |
tree | 16c8fa87fa5b5113b2186adfc0b58f3b3549ac90 /BuddhaTest/src/BuddhaTest.cpp | |
parent | 710c12067531e6e05280d081203aeb3b945669a9 (diff) |
Reduce buffer size by a factor of 2 (image is symmetric)
Diffstat (limited to 'BuddhaTest/src/BuddhaTest.cpp')
-rw-r--r-- | BuddhaTest/src/BuddhaTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BuddhaTest/src/BuddhaTest.cpp b/BuddhaTest/src/BuddhaTest.cpp index 09a3cf1..f23fc5d 100644 --- a/BuddhaTest/src/BuddhaTest.cpp +++ b/BuddhaTest/src/BuddhaTest.cpp @@ -12,7 +12,7 @@ void error_callback(int error, const char* description) int main()
{
unsigned int bufferWidth = 1600;
- unsigned int bufferHeight = 900;
+ unsigned int bufferHeight = 450;
unsigned int windowWidth = 1600;
unsigned int windowHeight = 900;
|