Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Changed to low precission for uniform in grid3D layer. #2146

Merged
merged 1 commit into from
Jul 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ uniform float colorMapRangeMax;

uniform bool isColoringDiscrete;
uniform float colorMapSize;
uniform highp int coloringMode;
uniform lowp int coloringMode;

uniform vec3 colorMapClampColor;
uniform bool isClampColor;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ attribute vec3 positions;
attribute float properties;
attribute vec3 normals;

uniform int coloringMode;
uniform lowp int coloringMode;

// Outputs to fragment shader
out vec3 cameraPosition;
Expand Down
Loading