- fix a rendering glitch when changing resolution

This commit is contained in:
Magnus Norddahl 2018-11-23 03:00:11 +01:00
parent 3e9f531b5f
commit d4e630c127
1 changed files with 3 additions and 0 deletions

View File

@ -288,4 +288,7 @@ void MemcpyCommand::Execute(DrawerThread *thread)
d += dstep;
s += sstep;
}
thread->numa_start_y = thread->numa_node * viewheight / thread->num_numa_nodes;
thread->numa_end_y = (thread->numa_node + 1) * viewheight / thread->num_numa_nodes;
}