You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
269 B

6 months ago
export const AttributeType = {
VERTEX: 1,
INDEX: 2,
STORAGE: 4
};
// size of a chunk in bytes (STD140 layout)
export const GPU_CHUNK_BYTES = 16;
// @TODO: Move to src/constants.js
export const BlendColorFactor = 211;
export const OneMinusBlendColorFactor = 212;