6 lines
86 B
TypeScript
6 lines
86 B
TypeScript
export declare enum ShaderStage {
|
|
VERTEX = 1,
|
|
FRAGMENT = 2,
|
|
COMPUTE = 4
|
|
}
|