Data moments should not have GLSL flat qualifiers to be sampled more than once per triangle

This commit is contained in:
Dan Paulat 2024-12-02 00:10:22 -06:00
parent 80d5be956d
commit 1b07c6f5b5
2 changed files with 5 additions and 5 deletions

View file

@ -13,8 +13,8 @@ layout (location = 2) in uint aCfpMoment;
uniform mat4 uMVPMatrix;
uniform vec2 uMapScreenCoord;
flat out uint dataMoment;
flat out uint cfpMoment;
out float dataMoment;
out float cfpMoment;
vec2 latLngToScreenCoordinate(in vec2 latLng)
{