MCPcopy Create free account
hub / github.com/RavEngine/RavEngine / TextureDescriptor

Method TextureDescriptor

deps/LLGL/wrapper/CSharp/CsTextureFlags.cpp:15–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13
14
15TextureDescriptor::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

Callers

nothing calls this directly

Calls 1

Extent3DClass · 0.50

Tested by

no test coverage detected