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

11 lines
145 B
JavaScript

/**
* @private
*/
var JobType = {
TEXTURE: 0,
PROGRAM: 1,
BUFFER: 2,
NUMBER_OF_JOB_TYPES: 3,
};
export default Object.freeze(JobType);