2
0
Fork 0

reduce static memory usage

fixes #13217
3.0
dragmz 2017-11-23 21:16:18 +07:00 committed by GitHub
parent 3a33725014
commit b20bb8615f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

@ -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
};