| 13 | |
| 14 | |
| 15 | TextureDescriptor::TextureDescriptor() |
| 16 | { |
| 17 | Type = TextureType::Texture2D; |
| 18 | BindFlags = SharpLLGL::BindFlags::Sampled | SharpLLGL::BindFlags::ColorAttachment; |
| 19 | MiscFlags = SharpLLGL::MiscFlags::FixedSamples | SharpLLGL::MiscFlags::GenerateMips; |
| 20 | Format = SharpLLGL::Format::RGBA8UNorm; |
| 21 | Extent = gcnew Extent3D(1, 1, 1); |
| 22 | ArrayLayers = 1; |
| 23 | MipLevels = 0; |
| 24 | Samples = 1; |
| 25 | } |
| 26 | |
| 27 | |
| 28 | } // /namespace SharpLLGL |