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

  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_scene.h 49 #define TILES_Y (LP_MAX_HEIGHT / TILE_SIZE)
174 unsigned tiles_x, tiles_y; member in struct:lp_scene
179 struct cmd_bin tile[TILES_X][TILES_Y];
309 assert(y < scene->tiles_y);
364 for (j = 0; j < scene->tiles_y; j++) {
377 return scene->tiles_x * scene->tiles_y;
lp_scene.c 70 size_t maxBins = TILES_X * TILES_Y;
109 for (y = 0; y < TILES_Y; y++) {
239 for (j = 0; j < scene->tiles_y; j++) {
461 if (scene->curr_y >= scene->tiles_y) {
522 scene->tiles_y = align(fb->height, TILE_SIZE) / TILE_SIZE;
524 assert(scene->tiles_y <= TILES_Y);

Completed in 416 milliseconds