vanattab / slimdx

Automatically exported from code.google.com/p/slimdx
MIT License
0 stars 0 forks source link

DXGI is missing BC6 and BC7 formats #538

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
The DXGI.Format enumeration does not have values for the BC6 and BC7
formats introduced with DirectX11.

BC6_Typeless = DXGI_FORMAT_BC6H_TYPELESS,
BC6_UFloat16 = DXGI_FORMAT_BC6H_UF16,
BC6_SFloat16 = DXGI_FORMAT_BC6H_SF16,
BC7_Typeless = DXGI_FORMAT_BC7_TYPELESS,
BC7_UNorm = DXGI_FORMAT_BC7_UNORM,
BC7_UNorm_SRGB = DXGI_FORMAT_BC7_UNORM_SRGB,

Should these of been added yet?

Original issue reported on code.google.com by Frassle on 14 Sep 2009 at 10:40

GoogleCodeExporter commented 9 years ago
Added all DX11 Format enumerations.

Original comment by ryoohki@gmail.com on 21 Sep 2009 at 11:28