Home | History | Annotate | Download | only in llvmpipe

Lines Matching refs:TILE_SIZE

109  * The tile size is TILE_SIZE x TILE_SIZE pixels.
155 assert(x < scene->tiles_x * TILE_SIZE);
156 assert(y < scene->tiles_y * TILE_SIZE);
187 assert(task->x < scene->tiles_x * TILE_SIZE);
188 assert(task->y < scene->tiles_y * TILE_SIZE);
189 assert(task->x % TILE_SIZE == 0);
190 assert(task->y % TILE_SIZE == 0);
227 assert(x < task->scene->tiles_x * TILE_SIZE);
228 assert(y < task->scene->tiles_y * TILE_SIZE);
235 px = x % TILE_SIZE;
236 py = y % TILE_SIZE;