diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2017-11-23 21:51:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-23 21:51:37 +0100 |
commit | 4feeca0021b8ef6078e91fa36f9b91365cd6e01f (patch) | |
tree | c68f18f5f04d337ca05f191c5b2cfc04dc00bbce /core | |
parent | 3a33725014169ce51d6ac581a4dce3b97a60da00 (diff) | |
parent | b20bb8615fe2e99485bfb8e8f422ef23e5f38028 (diff) |
Merge pull request #13220 from dragmz/patch-1
reduce static memory usage
Diffstat (limited to 'core')
-rw-r--r-- | core/command_queue_mt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/command_queue_mt.h b/core/command_queue_mt.h index 697fec3fc4..af91ee0cd9 100644 --- a/core/command_queue_mt.h +++ b/core/command_queue_mt.h @@ -302,7 +302,7 @@ class CommandQueueMT { /***** BASE *******/ enum { - COMMAND_MEM_SIZE_KB = 256 * 1024, + COMMAND_MEM_SIZE_KB = 256, COMMAND_MEM_SIZE = COMMAND_MEM_SIZE_KB * 1024, SYNC_SEMAPHORES = 8 }; |