LNXSDK/Kha/Sources/kha/graphics4/DepthStencilFormat.hx

16 lines
393 B
Haxe
Raw Normal View History

2025-01-22 16:18:30 +01:00
package kha.graphics4;
enum abstract DepthStencilFormat(Int) to Int {
var NoDepthAndStencil = 0;
var DepthOnly = 1;
var DepthAutoStencilAuto = 2;
// This is platform specific, use with care!
var Depth24Stencil8 = 3;
var Depth32Stencil8 = 4;
var Depth16 = 5;
// var StencilOnlyIndex1 = 5;
// var StencilOnlyIndex4 = 6;
// var StencilOnlyIndex8 = 7;
// var StencilOnlyIndex16 = 8;
}