Searched defs:DRAW_QUEUE_COUNT (Results 1 - 1 of 1) sorted by last modified time

/external/replicaisland/src/com/replica/replicaisland/
H A DRenderSystem.java34 private final static int DRAW_QUEUE_COUNT = 2; field in class:RenderSystem
36 private final static int MAX_RENDER_OBJECTS = MAX_RENDER_OBJECTS_PER_FRAME * DRAW_QUEUE_COUNT;
41 mRenderQueues = new ObjectManager[DRAW_QUEUE_COUNT];
42 for (int x = 0; x < DRAW_QUEUE_COUNT; x++) {
79 final int lastQueue = (mQueueIndex == 0) ? DRAW_QUEUE_COUNT - 1 : mQueueIndex - 1;
85 mQueueIndex = (mQueueIndex + 1) % DRAW_QUEUE_COUNT;
91 for (int x = 0; x < DRAW_QUEUE_COUNT; x++) {

Completed in 237 milliseconds