Introduce DEPTH_NONE and use it

Also better fix previous patch.

Suggestions by Joona and Ralph.

No functional change.

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
Marco Costalba
2010-07-20 19:06:09 +01:00
parent 28feb2c6b0
commit 02f96fcf5e
3 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -27,8 +27,8 @@
enum Depth {
DEPTH_ZERO = 0,
DEPTH_MAX = 200, // 100 * OnePly;
DEPTH_ENSURE_SIGNED = -1
DEPTH_MAX = 200, // 100 * OnePly;
DEPTH_NONE = -254 // -127 * OnePly
};