Skip to content
Snippets Groups Projects
Commit cea7264d authored by Qiang Yu's avatar Qiang Yu
Browse files

lima: move shift_w/h/max into conditional update


Signed-off-by: default avatarQiang Yu <yuq825@gmail.com>
parent f0cd030d
No related branches found
No related tags found
Loading
...@@ -61,16 +61,16 @@ lima_set_framebuffer_state(struct pipe_context *pctx, ...@@ -61,16 +61,16 @@ lima_set_framebuffer_state(struct pipe_context *pctx,
fb->width = framebuffer->width; fb->width = framebuffer->width;
fb->height = framebuffer->height; fb->height = framebuffer->height;
fb->shift_h = 0;
fb->shift_w = 0;
fb->shift_max = 0;
int width = align(framebuffer->width, 16) >> 4; int width = align(framebuffer->width, 16) >> 4;
int height = align(framebuffer->height, 16) >> 4; int height = align(framebuffer->height, 16) >> 4;
if (fb->tiled_w != width || fb->tiled_h != height) { if (fb->tiled_w != width || fb->tiled_h != height) {
fb->tiled_w = width; fb->tiled_w = width;
fb->tiled_h = height; fb->tiled_h = height;
fb->shift_h = 0;
fb->shift_w = 0;
fb->shift_max = 0;
int limit = ctx->plb_max_blk; int limit = ctx->plb_max_blk;
while ((width * height) > limit) { while ((width * height) > limit) {
if (width >= height) { if (width >= height) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment