aboutsummaryrefslogtreecommitdiffstats
path: root/trunk/ardor3d-core
diff options
context:
space:
mode:
authorRenanse <[email protected]>2012-12-03 11:18:41 -0600
committerRenanse <[email protected]>2012-12-03 11:18:41 -0600
commit7f0dc3d792e4db6b0128663117cba189ed6a406f (patch)
tree12b0b8b68e787d74c2845efee22e4f346d506cac /trunk/ardor3d-core
parentb8a0de90f041d4c9f9bd7dbb0326c46787daf090 (diff)
Added missing depth formats
Diffstat (limited to 'trunk/ardor3d-core')
-rw-r--r--trunk/ardor3d-core/src/main/java/com/ardor3d/image/TextureStoreFormat.java2
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() {