From 33b3415ebcdbdef8076df1b6708450714281085b Mon Sep 17 00:00:00 2001 From: Colby Klein Date: Thu, 6 Aug 2015 14:56:36 -0700 Subject: [PATCH] GREATER -> GEQUAL for the "greater" depth mode. --- init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 3f5d878..6351046 100644 --- a/init.lua +++ b/init.lua @@ -160,7 +160,7 @@ end function l3d.set_depth_test(method) if method then local methods = { - greater = GL.GREATER, + greater = GL.GEQUAL, equal = GL.EQUAL, less = GL.LEQUAL }