diff options
| author | Matt Kosarek <matt.kosarek@canonical.com> | 2025-12-29 10:02:38 -0500 |
|---|---|---|
| committer | Matt Kosarek <matt.kosarek@canonical.com> | 2025-12-29 10:02:38 -0500 |
| commit | fbc5d7dd1a9192c29daccdf12a7a067037ff2c2a (patch) | |
| tree | 399ade27d2e76a40956aa45a789db98841e5ae62 /themes/dist/output.js | |
| parent | 301d0aa4d61b21d4daf703672aa4b1d438651296 (diff) | |
Improve the sun shader with the help of AI
Diffstat (limited to 'themes/dist/output.js')
| -rw-r--r-- | themes/dist/output.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/themes/dist/output.js b/themes/dist/output.js index 6f95b3e..011ac68 100644 --- a/themes/dist/output.js +++ b/themes/dist/output.js @@ -3170,6 +3170,11 @@ function dbg(...args) { } }; + var _glUniform1f = (location, v0) => { + GLctx.uniform1f(webglGetUniformLocation(location), v0); + }; + + var miniTempWebGLFloatBuffers = []; var _glUniformMatrix4fv = (location, count, transpose, value) => { @@ -3363,6 +3368,8 @@ var wasmImports = { /** @export */ glShaderSource: _glShaderSource, /** @export */ + glUniform1f: _glUniform1f, + /** @export */ glUniformMatrix4fv: _glUniformMatrix4fv, /** @export */ glUseProgram: _glUseProgram, |
