Skip to content

Commit

Permalink
Examples: Clean up. (mrdoob#27321)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mugen87 authored and AdaRoseCannon committed Jan 15, 2024
1 parent 6120a27 commit f16a977
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/jsm/shaders/GTAOShader.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ const GTAOShader = {

fragmentShader: /* glsl */`
varying vec2 vUv;
uniform sampler2D tNormal;
uniform highp sampler2D tNormal;
uniform highp sampler2D tDepth;
uniform sampler2D tNoise;
uniform vec2 resolution;
Expand Down
2 changes: 1 addition & 1 deletion examples/jsm/shaders/SAOShader.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const SAOShader = {
#endif
uniform highp sampler2D tDepth;
uniform sampler2D tNormal;
uniform highp sampler2D tNormal;
uniform float cameraNear;
uniform float cameraFar;
Expand Down
2 changes: 1 addition & 1 deletion examples/jsm/shaders/SSAOShader.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const SSAOShader = {
}`,

fragmentShader: /* glsl */`
uniform sampler2D tNormal;
uniform highp sampler2D tNormal;
uniform highp sampler2D tDepth;
uniform sampler2D tNoise;
Expand Down

0 comments on commit f16a977

Please sign in to comment.