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 48 #define TILES_X (LP_MAX_WIDTH / TILE_SIZE)
174 unsigned tiles_x, tiles_y; member in struct:lp_scene
179 struct cmd_bin tile[TILES_X][TILES_Y];
308 assert(x < scene->tiles_x);
363 for (i = 0; i < scene->tiles_x; i++) {
377 return scene->tiles_x * scene->tiles_y;
lp_scene.c 70 size_t maxBins = TILES_X * TILES_Y;
110 for (x = 0; x < TILES_X; x++) {
238 for (i = 0; i < scene->tiles_x; i++) {
457 if (scene->curr_x >= scene->tiles_x) {
521 scene->tiles_x = align(fb->width, TILE_SIZE) / TILE_SIZE;
523 assert(scene->tiles_x <= TILES_X);

Completed in 105 milliseconds