Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-11-24 | Fixed black artifacts on SpatialMaterial [GLES2] | David Sichma | |
2018-11-16 | Removed unnecesary normal multiplication (only culling was really needed), ↵ | Juan Linietsky | |
fixes #17776 | |||
2018-11-14 | Merge pull request #23248 from dlasalle/fog | Juan Linietsky | |
Add parameters for fog end depth and use alpha as density. | |||
2018-11-13 | Add parameter for fog max depth and use alpha as density. | Dominique LaSalle | |
2018-11-12 | Merge pull request #22639 from tagcup/opt | Rémi Verschelde | |
Avoid some unnecessary calculations in scene.glsl. | |||
2018-10-28 | Fix GLES2 automatic texture lookup in canvas | Pedro J. Estébanez | |
After this change the color will only be fetched if the shader code doesn't use it explicitly, to match the GLES3 behaviour. Fixes #23179. | |||
2018-10-25 | GLES2: Fix shadows shader error for SpotLights | Rémi Verschelde | |
Fixes #23268. | |||
2018-10-24 | Merge pull request #23186 from BastiaanOlij/fix_gles2_stereo_sky | Rémi Verschelde | |
Fixed stereoscopic (VR) sky in GLES2 | |||
2018-10-24 | GLES2: Fix typo in tangent calculation | Rémi Verschelde | |
Thanks @tagcup for the find. Fixes #23234. | |||
2018-10-21 | Fixed stereoscopic (VR) sky in GLES2 | Bastiaan Olij | |
2018-10-11 | Avoid some unnecessary calculations in scene.glsl. | Ferenc Arn | |
2018-10-06 | Format GLES2 scene.glsl | Leon Krause | |
2018-10-06 | Fix GLES2 uniform precision | Leon Krause | |
2018-10-03 | Fix #22591: shader failed to compile when shadow enabled because of ↵ | Jean-François Michaud | |
incompatible assignment of vec3 to a vec4. | |||
2018-10-02 | vertex lit optimization for fog. | Juan Linietsky | |
2018-10-02 | Implemented FOG support in GLES2. | Juan Linietsky | |
2018-10-02 | Merge pull request #22627 from akien-mga/gles2-pixel-snap | Rémi Verschelde | |
GLES2: Implement pixel snap 2D option | |||
2018-10-02 | Bring accidentally commented out lines back. | Ferenc Arn | |
Oversight by me in #22483. GLES2 doesn't seem to be supporting anisotropy at the moment anyway ---in case it gets revived. | |||
2018-10-02 | GLES2: Implement pixel snap 2D option | Rémi Verschelde | |
2018-10-02 | Merge pull request #22483 from tagcup/fresnel | Rémi Verschelde | |
Restore the Fresnel term in the BRDF. | |||
2018-10-02 | Merge pull request #22562 from muiroc/gles2_canvas_skip_transform | Rémi Verschelde | |
Uses skip_vertex_transform in GLES2 canvas shader | |||
2018-10-02 | Moving lens distortion shader into drivers and adding GLES2 support | Bastiaan Olij | |
2018-10-02 | Style: Run clang-format on shaders again | Rémi Verschelde | |
2018-09-30 | -Many GLES2 optimizations | Juan Linietsky | |
-Android export fixes (use ETC if GLES2 backend in use) -revert to thekla atlas because xatlas is not working well | |||
2018-09-30 | Optimized GGX G function for GLES2. | tagcup | |
Also changed the mapping of anisotropy to match the common definition. | |||
2018-09-30 | Restore the Fresnel term in the BRDF. | Ferenc Arn | |
Was uncommented in 65fd37c, mostly likely by mistake since its important. Also made a few corrections of specular -> specular_blob_intensity (gles2). | |||
2018-09-30 | Uses skip_transform in gles2 canvas shader | muiroc | |
2018-09-30 | Style: Run clang-format on recent shader changes | Rémi Verschelde | |
2018-09-29 | Some more GLES2 tuning.. | Juan Linietsky | |
2018-09-29 | Many more GLES2 fixes | Juan Linietsky | |
2018-09-29 | This fixes a bug in refprobe blending, but I have no idea when I fixed it. ↵ | Juan Linietsky | |
It just started working all of sudden.. | |||
2018-09-29 | Many fixes to GLES2 renderer, fixed compilation issues in GLES3 shaders. | Juan Linietsky | |
2018-09-28 | -Lightmap and lightmap capture support for GLES2 | Juan Linietsky | |
-Added hint to not show some properties when running on low end gfx | |||
2018-09-28 | Reflection probe support in GLES2 back-end. | Juan Linietsky | |
2018-09-23 | Fix build after 65fd37c1, using Math_PI | Rémi Verschelde | |
Also fix style in shaders. | |||
2018-09-23 | -Rewrote GLES2 lighting and shadows and optimized state changes, did many ↵ | Juan Linietsky | |
optimizations, added vertex lighting. -Did some fixes to GLES3 too | |||
2018-08-27 | Style: Enable clang-format on GLSL shaders | Rémi Verschelde | |
As of clang-format 6.0.1, putting the `/* clang-format off */` hint around our "invalid" `[vertex]` and `[shader]` statements isn't enough to prevent a bogus indent of the next comments and first valid statement, so we need to enclose that first valid statement in the unformatted chunk. | |||
2018-08-24 | Fix generation of env map, closes #18880 | Juan Linietsky | |
2018-08-24 | Style: Fix code formatting in GLES2 shaders | Rémi Verschelde | |
2018-08-24 | Merge pull request #21318 from karroffel/gles2-shader-fixes | Thomas Herzog | |
[GLES2] attempt to fix some android problems | |||
2018-08-23 | Merge pull request #21317 from ↵ | Thomas Herzog | |
karroffel/gles2-canvas-texture-sampler-long-branch-name [GLES2] fix canvas_item sampler allocation | |||
2018-08-23 | [GLES2] attempt to fix some android problems | Thomas Herzog | |
2018-08-23 | [GLES2] fix canvas_item sampler allocation | Thomas Herzog | |
2018-08-23 | enable hardware skeletons | Thomas Herzog | |
2018-08-20 | Revert "Batch GLES2 draw calls" | Marcin Zawiejski | |
This reverts commit f55039b194bbbd8d797b667d67e5677fb429d356. The GLES2 batching seems to require more testing and tweaking in order to actually make the performance better on Android devices. It's been proved with #21184 that the current implementation has it's drawbacks therefore I suggest reverting the commit for now. | |||
2018-08-18 | Merge pull request #20965 from dragmz/gles2_batching | Thomas Herzog | |
Batch GLES2 draw calls | |||
2018-08-14 | Batch GLES2 draw calls | Marcin Zawiejski | |
Adds GLES2 draw calls batching for the same render list item that uses multiple rasterizer commands (e.g. Label node; a node with multiple GDScript draw_* calls). | |||
2018-08-12 | Fix handling of normals that approach 1 | Nick Hahn | |
2018-08-08 | Merge pull request #20805 from karroffel/gles2-misc-fixes | Thomas Herzog | |
unhacking some GLES2 code | |||
2018-08-08 | GLES2 refactors | Thomas Herzog | |
This commit unhacks some parts of the 3D rendering. Most notably: - possibility to use negative texture units (no longer weird manual index allocation for user samplers) - refactoring of light code, now sorts in a different way, should yield better performance - fixes a crash while saving (because of "Illegal instruction" execution) when using a decent compiler (clang, it's clang. Thanks GCC for not telling me about UB). |