HomeSort by relevance Sort by last modified time
    Searched refs:TILES_X (Results 1 - 2 of 2) sorted by null

  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_scene.h 49 #define TILES_X (LP_MAX_WIDTH / TILE_SIZE)
166 unsigned tiles_x, tiles_y; member in struct:lp_scene
171 struct cmd_bin tile[TILES_X][TILES_Y];
300 assert(x < scene->tiles_x);
355 for (i = 0; i < scene->tiles_x; i++) {
369 return scene->tiles_x * scene->tiles_y;
lp_scene.c 95 for (x = 0; x < TILES_X; x++) {
203 for (i = 0; i < scene->tiles_x; i++) {
423 if (scene->curr_x >= scene->tiles_x) {
481 scene->tiles_x = align(fb->width, TILE_SIZE) / TILE_SIZE;
484 assert(scene->tiles_x <= TILES_X);

Completed in 237 milliseconds