()
| 163 | var Kawarp = class { |
| 164 | canvas; |
| 165 | gl; |
| 166 | halfFloatExt = null; |
| 167 | halfFloatLinearExt = null; |
| 168 | // Shader programs |
| 169 | blurProgram; |
| 170 | blendProgram; |
| 171 | tintProgram; |
| 172 | warpProgram; |
| 173 | outputProgram; |
| 174 | // Buffers |
| 175 | positionBuffer; |
| 176 | texCoordBuffer; |
| 177 | // Source texture (original image) |
| 178 | sourceTexture; |
| 179 | // Small FBOs for blur (BLUR_SIZE x BLUR_SIZE) |
| 180 | blurFBO1; |
| 181 | blurFBO2; |
no test coverage detected