Skip to content

Commit 7afe1ea

Browse files
authored
Merge pull request #7669 from processing/fix/uv-name
Rename uv in vertex shader hooks to texCoord for consistency
2 parents 0d4843c + 963d449 commit 7afe1ea

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

src/webgl/material.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1622,7 +1622,7 @@ function material(p5, fn){
16221622
* Update the vertex data of the model being drawn before any positioning has been applied. It takes in a `Vertex` struct, which includes:
16231623
* - `vec3 position`, the position of the vertex
16241624
* - `vec3 normal`, the direction facing out of the surface
1625-
* - `vec2 uv`, the texture coordinates associeted with the vertex
1625+
* - `vec2 texCoord`, the texture coordinates associeted with the vertex
16261626
* - `vec4 color`, the per-vertex color
16271627
* The struct can be modified and returned.
16281628
*
@@ -1788,7 +1788,7 @@ function material(p5, fn){
17881788
* Update the vertex data of the model being drawn before any positioning has been applied. It takes in a `Vertex` struct, which includes:
17891789
* - `vec3 position`, the position of the vertex
17901790
* - `vec3 normal`, the direction facing out of the surface
1791-
* - `vec2 uv`, the texture coordinates associeted with the vertex
1791+
* - `vec2 texCoord`, the texture coordinates associeted with the vertex
17921792
* - `vec4 color`, the per-vertex color
17931793
* The struct can be modified and returned.
17941794
*

src/webgl/shaders/normal.vert

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ OUT vec4 vColor;
2626
struct Vertex {
2727
vec3 position;
2828
vec3 normal;
29-
vec2 uv;
29+
vec2 texCoord;
3030
vec4 color;
3131
};
3232

@@ -36,7 +36,7 @@ void main(void) {
3636
Vertex inputs;
3737
inputs.position = aPosition;
3838
inputs.normal = aNormal;
39-
inputs.uv = aTexCoord;
39+
inputs.texCoord = aTexCoord;
4040
inputs.color = (uUseVertexColor && aVertexColor.x >= 0.0) ? aVertexColor : uMaterialColor;
4141
#ifdef AUGMENTED_HOOK_getObjectInputs
4242
inputs = HOOK_getObjectInputs(inputs);
@@ -62,7 +62,7 @@ void main(void) {
6262
#endif
6363

6464
// Pass varyings to fragment shader
65-
vVertTexCoord = inputs.uv;
65+
vVertTexCoord = inputs.texCoord;
6666
vVertexNormal = normalize(inputs.normal);
6767
vColor = inputs.color;
6868

src/webgl/shaders/phong.vert

+3-3
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ OUT vec4 vColor;
3333
struct Vertex {
3434
vec3 position;
3535
vec3 normal;
36-
vec2 uv;
36+
vec2 texCoord;
3737
vec4 color;
3838
};
3939

@@ -43,7 +43,7 @@ void main(void) {
4343
Vertex inputs;
4444
inputs.position = aPosition;
4545
inputs.normal = aNormal;
46-
inputs.uv = aTexCoord;
46+
inputs.texCoord = aTexCoord;
4747
inputs.color = (uUseVertexColor && aVertexColor.x >= 0.0) ? aVertexColor : uMaterialColor;
4848
#ifdef AUGMENTED_HOOK_getObjectInputs
4949
inputs = HOOK_getObjectInputs(inputs);
@@ -70,7 +70,7 @@ void main(void) {
7070

7171
// Pass varyings to fragment shader
7272
vViewPosition = inputs.position;
73-
vTexCoord = inputs.uv;
73+
vTexCoord = inputs.texCoord;
7474
vNormal = inputs.normal;
7575
vColor = inputs.color;
7676

0 commit comments

Comments
 (0)