Add power 2 warning
This commit is contained in:
parent
d15874611d
commit
da89087ae6
2 changed files with 8 additions and 13 deletions
|
|
@ -1,6 +1,14 @@
|
|||
export enum WrapOptions {
|
||||
CLAMP_TO_EDGE = 'CLAMP_TO_EDGE',
|
||||
|
||||
/**
|
||||
* On WebGL it only work with power of 2 texture sizes.
|
||||
*/
|
||||
REPEAT = 'REPEAT',
|
||||
|
||||
/**
|
||||
* On WebGL it only work with power of 2 texture sizes.
|
||||
*/
|
||||
MIRRORED_REPEAT = 'MIRRORED_REPEAT',
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue