(x)
| 114 | // if it isn't we will set the wrap mode to CLAMP |
| 115 | // webgl2 will support npot REPEAT and MIRROR but we don't check for it yet |
| 116 | const isPowerOfTwo = (x) => (x & (x - 1)) === 0; |
| 117 | const textureData = texture._getTextureDataFromSource(); |
| 118 | |
| 119 | let wrapWidth; |
no outgoing calls
no test coverage detected