Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-04-24 | Translate inactive particles to -INF | Erik Johnson | |
(cherry picked from commit 6229c2a1f99135b841ce43f2728b4ac35a9b1938) | |||
2023-04-24 | Fix "error X3708: continue cannot be used in a switch" in HTML export | cody | |
(cherry picked from commit 5062df41a5fbb42d99e08817e19eb6a82c0464d2) | |||
2023-02-21 | Fix wobbly sky in stereoscopic OpenGL | Bastiaan Olij | |
2023-02-14 | Avoid branch in half2float in gl_compatibility renderer | clayjohn | |
2023-02-08 | Handle 0 exponent in float/half conversion for OpenGl | JoJoX | |
2023-02-04 | Merge pull request #72695 from clayjohn/CanvasGroup-shading | Yuri Sizov | |
Avoid shading CanvasGroup nodes twice | |||
2023-02-03 | Avoid shading CanvasGroup nodes twice | clayjohn | |
2023-02-03 | Ignore instance color and instance custom_data when not used in the OpenGL ↵ | clayjohn | |
renderer | |||
2023-02-01 | Merge pull request #72485 from BastiaanOlij/add_eye_matrix_access | Rémi Verschelde | |
Expose EYE_OFFSET to gdshader code | |||
2023-02-01 | Expose EYE_OFFSET to gdshader code | Bastiaan Olij | |
2023-01-31 | Fix sky rendering with multiview in OpenGL | David Snopek | |
2023-01-27 | Automatically transform Skeleton2D calculations so pivots are not needed | clayjohn | |
2023-01-26 | Merge pull request #71455 from BastiaanOlij/fix_stereo_screen_depth | Rémi Verschelde | |
Make screen texture and depth texture work in Multiview | |||
2023-01-25 | Make screen texture and depth texture work in Multiview | Bastiaan Olij | |
2023-01-24 | Fix some SpotLight3D issues (clustering artifacts, light leak) | Hendrik Brucker | |
2023-01-18 | Remove SCREEN_TEXTURE, DEPTH_TEXTURE, and NORMAL_ROUGHNESS_TEXTURE | clayjohn | |
in favour of texture hints | |||
2023-01-17 | GLES3: Fix canvas shader use of undefined draw_data | Rémi Verschelde | |
Fixes #71551. | |||
2023-01-14 | fix normal map not flipping in sprite2D | jainl28patel | |
2022-12-15 | Use instanced array buffer instead of UBO for canvas item batching | clayjohn | |
This simplifies the generated shader code which increases both performance and compile time on low end devices | |||
2022-12-11 | OpenGL: Fix scene shader error when using Omni or Spot but not both | Rémi Verschelde | |
Fixes #69886. | |||
2022-12-05 | Clean up specialization constants in OpenGL scene renderer | clayjohn | |
Also add support for disabling omni and spot lights when not used | |||
2022-12-05 | Merge pull request #69521 from clayjohn/GLES3-glsl | Rémi Verschelde | |
Expose emulated *Unorm4x8 glsl functions in non-android builds | |||
2022-12-04 | Exposure emulated *Unorm4x8 glsl functions in non-android builds | clayjohn | |
Originally these functions were exposed on all GLSL ES 300 devices. However, that causes a build error as Android devices expose the *Unorm4x8 functions despite them not being in the ES 300 spec | |||
2022-12-03 | Implement CAMERA_VISIBLE_LAYERS as built-in shader variable | NumbuhFour | |
2022-12-03 | Merge pull request #69522 from clayjohn/IBL-black-metal | Rémi Verschelde | |
Allow black metallic materials to reflect IBL | |||
2022-12-03 | Merge pull request #69514 from clayjohn/IBL-roughness | Rémi Verschelde | |
Properly remap roughness when reading from radiance map | |||
2022-12-02 | Allow black metallic materials to reflect IBL | clayjohn | |
2022-12-02 | Properly remap roughness when reading from radiance map | clayjohn | |
This ensures that we consistently use perceptual roughness which matches the behaviour of most other PBR renderers like Blender, Ue4 and Godot 3 | |||
2022-12-01 | Merge pull request #69325 from clayjohn/GLES3-skeletons | Rémi Verschelde | |
Add Skeletons and Blend Shapes to the OpenGL renderer | |||
2022-11-29 | Enable GLES3 on Android | clayjohn | |
Add necessary build flags and switch from using a GLES2 context to a GLES3 one. This also enables building for OpenXR Co-authored-by: m4gr3d <fhuyakou@gmail.com> Co-authored-by: dsnopek <dsnopek@gmail.com> | |||
2022-11-29 | Add Skeletons and Blend Shapes to the OpenGL renderer | clayjohn | |
This uses a similar multipass approach to blend shapes as Godot 3.x, the major difference here is that we need to convert the normals and tangents to octahedral for rendering. Skeletons work the same as the Vulkan renderer except the bones are stored in a texture as they were in 3.x. | |||
2022-11-21 | Expose model_matrix in GLES3 scene fragment shader | clayjohn | |
2022-11-20 | Merge pull request #68830 from Ayush-singla27/issuebranch | Rémi Verschelde | |
fixed incorrect mesh normals in shaders | |||
2022-11-18 | Fix drawing of 2D skeletons in the RD renderer. | clayjohn | |
Also clean up skeleton code in preparation for adding them to GLES3 Properly update Mesh2D AABBs when skeleton is updated | |||
2022-11-19 | fixed incorrect mesh normals in shaders | Ayush Singla | |
2022-11-14 | Add GPUParticles to the OpenGL3 renderer. | clayjohn | |
This includes collision (2D SDF, Box, Sphere, Heightmap), attraction (Box, Sphere), and all sorting modes. This does not include 3D SDF collisions, trails, or manual emission. | |||
2022-10-28 | Add 2D shadows and canvas SDF to OpenGL3 renderer | clayjohn | |
This is an initial implementation based on the current RD implementation Performance will improve later | |||
2022-10-27 | Merge pull request #66107 from devloglogan/ambient-light-disabled-fix | Clay John | |
Fix ambient_light_disabled render mode flag | |||
2022-10-21 | Add multiview to the opengl3 driver | David Snopek | |
2022-10-14 | Fix error in Web builds that resulting in 2D | clayjohn | |
objects not drawing in the GLES3 backend. Issue came from not binding a light UBO when using the DISABLE_LIGHTING code path | |||
2022-10-12 | Add 2D lights to OpenGL3 canvas renderer | clayjohn | |
This is an initial implementation using the same single-pass approach as the RenderingDevice. | |||
2022-10-06 | Use a giant UBO to optimize performance in 2D | clayjohn | |
This removes the countless small UBO writes we had before and replaces them with a single large write per render pass. This results in much faster rendering on low-end devices but improves speed on all devices. | |||
2022-10-03 | Properly expose TEXTURE_PIXEL_SIZE in Opengl3 renderer | clayjohn | |
2022-09-19 | enabled ambient_light_disabled render mode flag | Logan Lang | |
2022-09-13 | Move debanding into internal sky shader code so that it is applied after ↵ | clayjohn | |
everything else. This ensures that the debanding does not scale with exposure or any other effect. | |||
2022-09-12 | Apply energy conservation to LAMBERT_WRAP and TOON diffuse modes by dividing ↵ | clayjohn | |
by PI | |||
2022-09-06 | Fix rendering when using WebGL2. | clayjohn | |
Fixes include using proper depth buffer format in 3D (this had previously been fixed already but the changes were lost in a rebase), Remove unused lighting and shadowing code in 2D, and update 2D UBOs using glBufferSubData so that they remain the appropriate size. | |||
2022-08-31 | Implement Physical Light Units as an optional setting. | clayjohn | |
This allows light sources to be specified in physical light units in addition to the regular energy multiplier. In order to avoid loss of precision at high values, brightness values are premultiplied by an exposure normalization value. In support of Physical Light Units this PR also renames CameraEffects to CameraAttributes. | |||
2022-08-23 | Add font LCD sub-pixel anti-aliasing support. | bruvzg | |
2022-08-13 | Implement Octahedral on OpenGL3 | Omar El Sheikh | |