diff options
author | Renanse <[email protected]> | 2012-12-03 11:18:41 -0600 |
---|---|---|
committer | Renanse <[email protected]> | 2012-12-03 11:18:41 -0600 |
commit | 7f0dc3d792e4db6b0128663117cba189ed6a406f (patch) | |
tree | 12b0b8b68e787d74c2845efee22e4f346d506cac /trunk/ardor3d-core | |
parent | b8a0de90f041d4c9f9bd7dbb0326c46787daf090 (diff) |
Added missing depth formats
Diffstat (limited to 'trunk/ardor3d-core')
-rw-r--r-- | trunk/ardor3d-core/src/main/java/com/ardor3d/image/TextureStoreFormat.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/trunk/ardor3d-core/src/main/java/com/ardor3d/image/TextureStoreFormat.java b/trunk/ardor3d-core/src/main/java/com/ardor3d/image/TextureStoreFormat.java index 62580b0..fab3b58 100644 --- a/trunk/ardor3d-core/src/main/java/com/ardor3d/image/TextureStoreFormat.java +++ b/trunk/ardor3d-core/src/main/java/com/ardor3d/image/TextureStoreFormat.java @@ -347,7 +347,7 @@ public enum TextureStoreFormat { RG32F; public boolean isDepthFormat() { - return this == Depth16 || this == Depth24 || this == Depth32; + return this == Depth16 || this == Depth24 || this == Depth32 || this == Depth || this == Depth32F; } public boolean isCompressed() { |