We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 454e7ff commit 3474816Copy full SHA for 3474816
Graphics/GraphicsEngine/interface/Texture.h
@@ -94,7 +94,10 @@ struct TextureDesc DILIGENT_DERIVE(DeviceObjectAttribs)
94
#else
95
union
96
{
97
- /// For a 1D array or 2D array, number of array slices
+ /// For a 1D array or 2D array, number of array slices.
98
+ ///
99
+ /// For cube maps and cube map arrays, this value must be a multiple of 6.
100
+ /// The number of cube maps in the texture is ArraySize / 6.
101
Uint32 ArraySize DEFAULT_INITIALIZER(1);
102
103
/// For a 3D texture, number of depth slices
0 commit comments