Remove commented out debug code

This commit is contained in:
Patrick Walton 2017-08-18 17:13:44 -07:00
parent 653530be0b
commit 343c67aa33
1 changed files with 0 additions and 5 deletions

View File

@ -42,11 +42,6 @@ void main() {
lowerLeftPosition = transformVertexPosition(lowerLeftPosition, uTransform);
lowerRightPosition = transformVertexPosition(lowerRightPosition, uTransform);
/*upperLeftPosition = vec2(0.0, 0.0);
upperRightPosition = vec2(200.0, 0.0);
lowerLeftPosition = vec2(0.0, 200.0);
lowerRightPosition = vec2(200.0, 200.0);*/
vec4 extents = vec4(min(upperLeftPosition.x, lowerLeftPosition.x),
min(min(upperLeftPosition.y, upperRightPosition.y),
min(lowerLeftPosition.y, lowerRightPosition.y)),