Pablo Martin
Pablo Martin
https://github.com/haxeui/haxeui-core/pull/152
It requires https://github.com/haxeui/haxeui-core/pull/106
PR with changes to allow Lime compilation without OpenFL.
Initial support for the KHR_texture_basisu extension. Extension information: https://github.com/KhronosGroup/glTF/blob/main/extensions/2.0/Khronos/KHR_texture_basisu/README.md
The minimal case is: ``` precision highp float; varying vec4 vColor; void main() { gl_Position = vec4(0.0, 0.0, 0.0, 1.0); } ``` using `shader_minifier.exe -o output.glsl --format text --no-renaming-list "vColor"...
A recent paper by the original 3DGS authors presents methods to reduce the GS by 27x without sacrificing quality. You can find the paper here: [Reduced 3DGS](https://repo-sam.inria.fr/fungraph/reduced_3dgs/). The paper introduces...