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.
23 lines
457 B
JavaScript
23 lines
457 B
JavaScript
/**
|
|
* Determines how input texture to a {@link PostProcessStage} is sampled.
|
|
*
|
|
* @enum {Number}
|
|
*/
|
|
var PostProcessStageSampleMode = {
|
|
/**
|
|
* Samples the texture by returning the closest texel.
|
|
*
|
|
* @type {Number}
|
|
* @constant
|
|
*/
|
|
NEAREST: 0,
|
|
/**
|
|
* Samples the texture through bi-linear interpolation of the four nearest texels.
|
|
*
|
|
* @type {Number}
|
|
* @constant
|
|
*/
|
|
LINEAR: 1,
|
|
};
|
|
export default PostProcessStageSampleMode;
|