Browse Source

remove unneeded checks

pull/5125/head
Johnny Cena 1 month ago
parent
commit
a99649b455
2 changed files with 2 additions and 4 deletions
  1. +1
    -2
      examples/models/resources/shaders/glsl100/voxel_lighting.fs
  2. +1
    -2
      examples/models/resources/shaders/glsl100/voxel_lighting.vs

+ 1
- 2
examples/models/resources/shaders/glsl100/voxel_lighting.fs View File

@ -1,7 +1,6 @@
#version 100
#ifdef GL_ES
precision mediump float;
#endif
// Input from vertex shader
varying vec3 fragPosition;

+ 1
- 2
examples/models/resources/shaders/glsl100/voxel_lighting.vs View File

@ -1,7 +1,6 @@
#version 100
#ifdef GL_ES
precision mediump float;
#endif
// Input vertex attributes
attribute vec3 vertexPosition;

Loading…
Cancel
Save