OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TILES_Y
(Results
1 - 2
of
2
) sorted by null
/external/mesa3d/src/gallium/drivers/llvmpipe/
lp_scene.h
50
#define
TILES_Y
(LP_MAX_HEIGHT / TILE_SIZE)
166
unsigned tiles_x,
tiles_y
;
member in struct:lp_scene
171
struct cmd_bin tile[TILES_X][
TILES_Y
];
301
assert(y < scene->
tiles_y
);
356
for (j = 0; j < scene->
tiles_y
; j++) {
369
return scene->tiles_x * scene->
tiles_y
;
lp_scene.c
94
for (y = 0; y <
TILES_Y
; y++) {
204
for (j = 0; j < scene->
tiles_y
; j++) {
427
if (scene->curr_y >= scene->
tiles_y
) {
482
scene->
tiles_y
= align(fb->height, TILE_SIZE) / TILE_SIZE;
485
assert(scene->
tiles_y
<=
TILES_Y
);
Completed in 205 milliseconds