Skip to content

Commit

Permalink
[Impeller] ensure precision matches for buggy vulkan drivers. (flutte…
Browse files Browse the repository at this point in the history
…r#54372)

This is another precision mismatch bug - WHICH IS NOT AN ERROR AT ALL BUT THE PowerVR Drivers ARE BUGGY BUGGY BUGGY

Fixes flutter/flutter#152951
  • Loading branch information
jonahwilliams authored Aug 6, 2024
1 parent 206e86e commit fc5d81d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions impeller/entity/shaders/gradients/fast_gradient.vert
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ uniform FrameInfo {
frame_info;

in vec2 position;
in vec4 color;
in mediump vec4 color;

// The geometry of the fast gradient draws is designed so that the
// varying unit will perform the correct color interpolation.
out vec4 v_color;
out mediump vec4 v_color;

void main() {
gl_Position = frame_info.mvp * vec4(position, 0.0, 1.0);
Expand Down
4 changes: 2 additions & 2 deletions impeller/tools/malioc.json
Original file line number Diff line number Diff line change
Expand Up @@ -793,7 +793,7 @@
"stack_spill_bytes": 0,
"thread_occupancy": 100,
"uniform_registers_used": 20,
"work_registers_used": 9
"work_registers_used": 7
}
}
}
Expand Down Expand Up @@ -2175,7 +2175,7 @@
"stack_spill_bytes": 0,
"thread_occupancy": 100,
"uniform_registers_used": 8,
"work_registers_used": 9
"work_registers_used": 7
}
}
},
Expand Down

0 comments on commit fc5d81d

Please sign in to comment.