mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 06:48:06 +02:00
[g3dvl] fix of my one bug in SCALE_FACTOR_16_TO_9
This commit is contained in:
parent
0bc51ba484
commit
48e19e8f35
1 changed files with 1 additions and 1 deletions
|
|
@ -42,7 +42,7 @@
|
|||
#define MACROBLOCK_HEIGHT 16
|
||||
#define BLOCK_WIDTH 8
|
||||
#define BLOCK_HEIGHT 8
|
||||
#define SCALE_FACTOR_16_TO_9 (32767.0f / 255.0f)
|
||||
#define SCALE_FACTOR_16_TO_9 (32768.0f / 256.0f)
|
||||
|
||||
struct vertex_shader_consts
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue