| 379 | /// <param name="textureFlags">The texture flags.</param> |
| 380 | /// <returns>A new instance of <see cref="GPUTextureDescription"/> class.</returns> |
| 381 | static GPUTextureDescription NewCube(int32 size, int32 mipCount, PixelFormat format, GPUTextureFlags textureFlags = GPUTextureFlags::ShaderResource | GPUTextureFlags::RenderTarget) |
| 382 | { |
| 383 | return NewCube(size, format, textureFlags, mipCount); |
| 384 | } |
| 385 | |
| 386 | /// <summary> |
| 387 | /// Creates a new Cube <see cref="GPUTextureDescription"/>. |
no outgoing calls
no test coverage detected