summaryrefslogtreecommitdiffstats
path: root/drivers/gles3
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #86138 from EnlightenedOne/masterThaddeus Crews2024-11-042-1/+7
|\ | | | | | | Fix Frustum Sky projection translation logic shearing
| * Fix Frustum Sky projection translation logic, all pipelines, fixes 63863EnlightenedOne2024-11-022-1/+7
| |
* | Merge pull request #93401 from Repiteo/style/clang-tidy-fixesThaddeus Crews2024-11-041-1/+1
|\ \ | | | | | | | | | Style: Apply `clang-tidy` fixes
| * | Style: Apply `clang-tidy` fixes (superficial)Thaddeus Crews2024-11-041-1/+1
| | | | | | | | | | | | • `modernize-use-bool-literals`, `modernize-use-nullptr`, and `readability-braces-around-statements`
* | | Merge pull request #96705 from elmajime/camera_from_external_feedThaddeus Crews2024-11-047-1/+271
|\ \ \ | |/ / |/| | | | | Add support for external camera feed from external plugin on Android
| * | Added external camera feed from external plugin on Androidmaxime.chambefort2024-10-307-1/+271
| |/
* | Revert "Fix GPUParticles are not rendered for older AMD GPUs with OpenGL+Angle"clayjohn2024-10-294-19/+41
| | | | | | | | | | | | This reverts commit 9cc9df52eb6ef32b80bd3bd725807fea70b00a89. This also adds a fallback to avoid using the Godot versions of the half 2 float functions when using ANGLE.
* | Set clang-format `RemoveSemicolon` rule to `true`Adam Scott2024-10-257-33/+33
| | | | | | | | - Set clang-format `Standard` rule to `c++20`
* | Merge pull request #98448 from Chaosus/shader_global_builtinsYuri Rubinsky2024-10-251-2/+2
|\ \ | | | | | | Make `OUTPUT_IS_SRGB/CLIP_SPACE_FAR` shader built-ins global
| * | Make `OUTPUT_IS_SRGB/CLIP_SPACE_FAR` shader built-ins globalChaosus2024-10-241-2/+2
| | |
* | | Merge pull request #85338 from EMBYRDEV/shadow-caster-maskThaddeus Crews2024-10-242-0/+20
|\ \ \ | |/ / |/| | | | | Add `shadow_caster_mask` to Light3D.
| * | Add `shadow_caster_mask` to Light3D.Hannah Crawford2024-08-122-0/+20
| | |
* | | Merge pull request #98294 from Calinou/texture-placeholders-use-shared-copyThaddeus Crews2024-10-212-32/+36
|\ \ \ | | | | | | | | | | | | Use a shared copy of placeholder textures, tweak placeholder appearance
| * | | Use a shared copy of placeholder textures, tweak placeholder appearanceHugo Locurcio2024-10-182-32/+36
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reduces memory usage a bit in case multiple placeholders were requested, e.g. when using multiple NoiseTextures with no noise property defined. The placeholder texture's appearance was also changed from a plain magenta color to a checkerboard alternating between magenta and black pixels. This makes it easier to spot when the placeholder texture ends up being used in a complex scene (usually by accident). The texture's dimensions remain identical to keep the physical size identical in 2D.
* | | | Don't include `core/io/image.h` in `core/os/os.h`Yevhen Babiichuk (DustDFG)2024-10-182-0/+2
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | `core/os/os.h` doesn't use `core/io/image.h`. It just brings transitive dependencies. Lots of dependencies because `core/os/os.h` is transitively included in almost every file of godot Also added `core/io/image.h` into files^1 where `Ref<Image>` and `core/os/os.h` were used to prevent obscure errors involving `Ref<Image>` ^1 except those which include `core/io/image_loader.h` or `core/io/image.h` by corresponding .h file with the same name Signed-off-by: Yevhen Babiichuk (DustDFG) <dfgdust@gmail.com> Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com>
* | | Merge pull request #97744 from Nazarwadim/use_local_vector_for_skeletonThaddeus Crews2024-10-102-4/+4
|\ \ \ | | | | | | | | | | | | Use `LocalVector` for skeleton
| * | | Use local vector for skeletonNazarii2024-10-022-4/+4
| | | |
* | | | Merge pull request #94952 from alvinhochun/angle-d3d11-flip-yThaddeus Crews2024-10-102-3/+28
|\ \ \ \ | | | | | | | | | | | | | | | Optimize ANGLE on D3D11 to remove an extra blit
| * | | | Optimize ANGLE on D3D11 to remove an extra blitAlvin Wong2024-07-312-3/+28
| | |/ / | |/| | | | | | | | | | | | | | | | | | | | | | Support the extension EGL_ANGLE_surface_orientation, which allows ANGLE to skip an extra blit from an intermediate buffer to the D3D11 swap chain back buffer for inverting the Y axis due to the difference in coordinate systems. Instead we do our inverting in RasterizerGLES3.
* | | | Merge pull request #96819 from clayjohn/GLES3-instance-uniformsClay John2024-10-073-0/+4
|\ \ \ \ | |_|_|/ |/| | | Implement instance uniforms in Compatibility renderer
| * | | Implement instance uniforms in Compatibility rendererclayjohn2024-09-103-0/+4
| | | |
* | | | Implement asynchronous transfer queues, thread guards on RenderingDevice. ↵Dario2024-10-025-7/+8
| |_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add ubershaders and rework pipeline caches for Forward+ and Mobile. - Implements asynchronous transfer queues from PR #87590. - Adds ubershaders that can run with specialization constants specified as push constants. - Pipelines with specialization constants can compile in the background. - Added monitoring for pipeline compilations. - Materials and shaders can now be created asynchronously on background threads. - Meshes that are loaded on background threads can also compile pipelines as part of the loading process.
* | | Merge pull request #97676 from clayjohn/GLES3-sky-qualityRémi Verschelde2024-10-021-7/+11
|\ \ \ | | | | | | | | | | | | Improve the look of radiance map in Compatibility backend
| * | | Improve the look of radiance map in Compatibility backendclayjohn2024-09-291-7/+11
| | | |
* | | | Clamp UV-coordinates to centers of outermost texels when configured to do soPatrick Owen2024-09-291-1/+2
|/ / / | | | | | | | | | In addition, fix region_filter_clip_enabled documentation to be consistent with AtlasTexture.xml, since that is the option whose behavior was fixed
* | | Implement vertex shadingywmaa2024-09-294-11/+287
| | | | | | | | | | | | | | | | | | | | | | | | This adds support in all backends, but the Compatibility renderer works the best. Mobile and Forward+ can only support one directional light shader (the first in the tree) While the Compatibility renderer supports any number of shadows. Co-authored-by: Clay John <claynjohn@gmail.com>
* | | SCons: Add unobtrusive type hints in SCons filesThaddeus Crews2024-09-256-0/+6
| | |
* | | Fix incorrect Reinhard tonemap operatorRie2024-09-251-2/+6
| | |
* | | Merge pull request #97379 from clayjohn/webgl-errorsRémi Verschelde2024-09-244-4/+11
|\ \ \ | | | | | | | | | | | | Clean up two recently introduced WebGL errors
| * | | Clean up two recently introduced WebGL errorsclayjohn2024-09-234-4/+11
| | | |
* | | | Merge pull request #97260 from clayjohn/pixel_snapRémi Verschelde2024-09-211-2/+2
|\ \ \ \ | | | | | | | | | | | | | | | Calculate pixel snap in canvas space instead of world space
| * | | | Calculate pixel snap in canvas space instead of world spaceclayjohn2024-09-201-2/+2
| | | | | | | | | | | | | | | | | | | | This ensures that you are actually snapping to pixels in the viewport and not an arbitrary amount
* | | | | Add external texture support (GLES3)David Snopek2024-09-206-1/+95
|/ / / / | | | | | | | | | | | | | | | | Co-authored-by: Fredia Huya-Kouadio <fhuyakou@gmail.com> Co-authored-by: Mauricio Narvaez <nvz@meta.com>
* | | | Style: Apply new `clang-format` changesThaddeus Crews2024-09-203-6/+4
| | | |
* | | | Merge pull request #96928 from dsnopek/rename-and-expose-texture-create-externalRémi Verschelde2024-09-192-11/+13
|\ \ \ \ | |/ / / |/| | | | | | | Expose a function to create textures from a native handle in the compatibility renderer
| * | | Expose a function to create textures from a native handle in the ↵David Snopek2024-09-192-11/+13
| | | | | | | | | | | | | | | | compatibility renderer
* | | | Fix compatibility canvas background depth issueBastiaan Olij2024-09-181-0/+3
| | | |
* | | | Merge pull request #97069 from patwork/fix-gles3-update-sky-cubemapRémi Verschelde2024-09-171-1/+1
|\ \ \ \ | | | | | | | | | | | | | | | Fix for GLES3 radiance cubemap update
| * | | | Fix for GLES3 radiance cubemap updatepatwork2024-09-161-1/+1
| |/ / /
* | | | Merge pull request #92290 from clayjohn/LOD-fixesRémi Verschelde2024-09-161-27/+14
|\ \ \ \ | |/ / / |/| | | | | | | Use distance to AABB surface to calculate Mesh LOD instead of using supports
| * | | Use distance to AABB surface to calculate Mesh LOD instead of using supportsclayjohn2024-09-111-27/+14
| |/ /
* | | Merge pull request #96863 from BlueCube3310/gles-align-fixRémi Verschelde2024-09-121-2/+2
|\ \ \ | |/ / |/| | | | | Compatibility: Fix alignment of compressed textures when retrieving
| * | Compatibility: Fix alignment of compressed textures when retrievingBlueCube33102024-09-111-2/+2
| | |
* | | Merge pull request #94893 from rune-scape/no-const-cast-mesh-storageRémi Verschelde2024-09-102-3/+3
|\ \ \ | | | | | | | | | | | | Avoid `const_cast` in `mesh_storage.h`
| * | | Avoid const_cast in mesh_storage.hrune-scape2024-08-282-3/+3
| | | |
* | | | Add basic support to evaluate operator value in shader languageYuri Rubinsky2024-09-091-2/+2
| |/ / |/| |
* | | Merge pull request #96509 from Rudolph-B/Issue-92091Rémi Verschelde2024-09-081-0/+5
|\ \ \ | | | | | | | | | | | | Fix OpenGL shadow textures not honoring texture type when reusing textures
| * | | Fixed OpenGL shadow textures not honoring texture type when reusing texturesRudolph Bester2024-09-031-0/+5
| | | |
* | | | Merge pull request #96114 from BlueCube3310/sh-lightmap-packingRémi Verschelde2024-09-061-9/+9
|\ \ \ \ | | | | | | | | | | | | | | | LightmapGI: Pack L1 SH coefficients for directional lightmaps
| * | | | LightmapGI: Pack L1 SH coefficients for directional lightmapsBlueCube33102024-09-051-9/+9
| | | | |