Update Files

This commit is contained in:
2025-01-22 16:18:30 +01:00
parent ed4603cf95
commit a36294b518
16718 changed files with 2960346 additions and 0 deletions

View File

@ -0,0 +1,15 @@
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;
}