This commit is contained in:
Akko
2025-08-04 18:57:35 +02:00
parent 8cf6e78a79
commit 9495868c2e
5030 changed files with 518594 additions and 17609 deletions

View File

@@ -0,0 +1,15 @@
/**
* Constants for various buffer types in Pixi
* @see BUFFER_TYPE
* @name BUFFER_TYPE
* @static
* @enum {number}
* @property {number} ELEMENT_ARRAY_BUFFER - buffer type for using as an index buffer
* @property {number} ARRAY_BUFFER - buffer type for using attribute data
* @property {number} UNIFORM_BUFFER - the buffer type is for uniform buffer objects
*/
export declare enum BUFFER_TYPE {
ELEMENT_ARRAY_BUFFER = 34963,
ARRAY_BUFFER = 34962,
UNIFORM_BUFFER = 35345
}