diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-05-14 19:40:07 +0200 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-05-14 19:40:07 +0200 |
| commit | 84a5a84861c95174e6dc4b28301fc4bcb0192069 (patch) | |
| tree | 72fda86c971fec9c5e15bd02a02fa3ee49563845 /shader/vertex.glsl | |
| parent | f6de2b1453930267015ab9323d5f83daa25667ba (diff) | |
| download | scop-master.tar.gz scop-master.tar.bz2 scop-master.zip | |
Diffstat (limited to 'shader/vertex.glsl')
| -rw-r--r-- | shader/vertex.glsl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/shader/vertex.glsl b/shader/vertex.glsl index e61ec34..6f73689 100644 --- a/shader/vertex.glsl +++ b/shader/vertex.glsl @@ -15,5 +15,6 @@ void main() { gl_Position = u_proj * u_view * u_model * in_position; v_color = in_color; - v_texture_coord = in_texture_coord; + /* v_texture_coord = in_texture_coord; */ + v_texture_coord = vec2(in_position.y, in_position.z); } |
