summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngine
diff options
context:
space:
mode:
Diffstat (limited to 'Graphics/GraphicsEngine')
-rw-r--r--Graphics/GraphicsEngine/interface/GraphicsTypes.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/Graphics/GraphicsEngine/interface/GraphicsTypes.h b/Graphics/GraphicsEngine/interface/GraphicsTypes.h
index 169a0793..2c37c0d5 100644
--- a/Graphics/GraphicsEngine/interface/GraphicsTypes.h
+++ b/Graphics/GraphicsEngine/interface/GraphicsTypes.h
@@ -1575,7 +1575,8 @@ namespace Diligent
/// Indicates if the format can be used to create a cube texture
bool TexCubeFmt = false;
- /// Indicates if the format can be used to create a multisampled 2D texture
- bool SupportsMS = false;
+ /// A bitmask specifying all the supported sample counts for this texture format.
+ /// If the format supports n samples, then (SampleCounts & n) != 0
+ Uint32 SampleCounts = 0;
};
}