1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-18 14:21:41 +00:00

Removed noperspective (not in GLSL ES 3.0), do not write smooth if not specified. Fixes #20435

This commit is contained in:
Juan Linietsky
2018-11-21 23:07:09 -03:00
parent 10c3ba2c1b
commit 631cf676c3
3 changed files with 1 additions and 9 deletions

View File

@@ -80,7 +80,6 @@ public:
TK_TYPE_USAMPLER3D,
TK_TYPE_SAMPLERCUBE,
TK_INTERPOLATION_FLAT,
TK_INTERPOLATION_NO_PERSPECTIVE,
TK_INTERPOLATION_SMOOTH,
TK_PRECISION_LOW,
TK_PRECISION_MID,
@@ -210,7 +209,6 @@ public:
enum DataInterpolation {
INTERPOLATION_FLAT,
INTERPOLATION_NO_PERSPECTIVE,
INTERPOLATION_SMOOTH,
};