summaryrefslogtreecommitdiffstats
path: root/servers
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #61214 from somnathsarkar/particle-attractor-fixRémi Verschelde2022-05-211-4/+12
|\ | | | | Fix GPUParticles3D disappearance at attractor origins
| * Fix GPUParticles3D disappearance at attractor originsSomnath Sarkar2022-05-201-4/+12
| |
* | Add a new HashSet templatereduz2022-05-2034-101/+101
| | | | | | | | | | * Intended to replace RBSet in most cases. * Optimized for iteration speed
* | Fix normal and tangent blending in blend shapesWindy Darian2022-05-201-3/+3
| |
* | Use suffixes for units in nodes and resourcesAaron Franke2022-05-191-1/+1
|/
* Use range iterators for RBSet in most casesAaron Record2022-05-1916-139/+139
|
* Add dedicated macros for property name extractionHaoyu Qiu2022-05-193-33/+33
| | | | | | | * Replace case-by-case extraction with PNAME & GNAME * Fix group handling when group hint begins with property name * Exclude properties that are PROPERTY_USAGE_NO_EDITOR * Extract missing ADD_ARRAY*, ADD_SUBGROUP* macros
* Add motion parameter to toggle whether recovery is reported as a collisionRicardo Buring2022-05-186-2/+18
| | | | This makes the intent explicit in each use case.
* Fix tonemapper shader to correctly apply alpha channelYuri Rubinsky2022-05-182-13/+14
|
* Add basic lighting to GLES3 renderer.clayjohn2022-05-161-2/+2
| | | | This includes all three light types and IBL, but does not include shadows or any form of GI
* Fix custom irradiance bug in Vulkan mobile rendererclayjohn2022-05-161-1/+1
|
* Merge pull request #60958 from smix8/navigation_server_rid_utility_4.xRémi Verschelde2022-05-164-0/+28
|\
| * Add NavigationServer2D/3D API functions to find missing RID infosmix82022-05-124-0/+28
| | | | | | | | | | | | Utility functions for NavigationServer2D/3D to find missing RID information when working with Server API directly. e.g. from map to regions and agents, from agent or region to map, from region to map and agents and so on .... Requirement to work with NavigationServer API exklusive without SceneTree nodes and when juggling agents and regions between multiple navigation maps.
* | Replace most uses of Map by HashMapreduz2022-05-1675-455/+463
| | | | | | | | | | | | | | | | | | | | | | | | * Map is unnecessary and inefficient in almost every case. * Replaced by the new HashMap. * Renamed Map to RBMap and Set to RBSet for cases that still make sense (order matters) but use is discouraged. There were very few cases where replacing by HashMap was undesired because keeping the key order was intended. I tried to keep those (as RBMap) as much as possible, but might have missed some. Review appreciated!
* | Fix computation of screen_uvSomnath Sarkar2022-05-162-2/+2
| |
* | Merge pull request #60894 from derammo/derammo_opengl3_windowsRémi Verschelde2022-05-131-2/+5
|\ \
| * | opengl3 driver now works on windows including multi windowderammo2022-05-111-2/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fixed and simplified gl_manager_windows swap buffers now called for all windows fixed missing pixel format setting in additional windows this makes them work in OpenGL contexts changed verbose error printing to write once this error message happens very frequently while opengl3 is not finished removed dead code no longer needed after changes fixed comments that were misinformation window messages during window creation now handled these were previously discarded messages now tunnel the required context changed failure to create opengl3 window on windows to be more fatal marked a problem with pen code conditional compilation of vulkan and opengl3 on windows fixed windows debug builds now show messages on debug console also rendering driver selection box now shows only compiled drivers marked some problematic code thanks to akien-mga for patiently rewriting my style mistakes
* | | Copy_to_fb is available in both raster and clustered renderers, remove ↵Bastiaan Olij2022-05-131-4/+0
| | | | | | | | | | | | unwanted checks
* | | Merge pull request #60976 from Calinou/fsr-rename-property-hintRémi Verschelde2022-05-122-2/+2
|\ \ \
| * | | Rename remaining references of FSR to FSR 1.0Hugo Locurcio2022-05-122-2/+2
| | | | | | | | | | | | | | | | | | | | With FSR 2.0 around the corner, we should avoid any ambiguity by explicitly stating the version number.
* | | | Merge pull request #60643 from clayjohn/GLES3-3DRémi Verschelde2022-05-128-53/+34
|\ \ \ \ | |/ / / |/| | |
| * | | Basic 3D renderingclayjohn2022-05-122-38/+40
| | | |
| * | | SceneShader compilingclayjohn2022-05-112-34/+8
| | | |
| * | | SkyShaders workingclayjohn2022-05-117-13/+18
| | | |
* | | | Add a new HashMap implementationreduz2022-05-125-17/+15
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Adds a new, cleaned up, HashMap implementation. * Uses Robin Hood Hashing (https://en.wikipedia.org/wiki/Hash_table#Robin_Hood_hashing). * Keeps elements in a double linked list for simpler, ordered, iteration. * Allows keeping iterators for later use in removal (Unlike Map<>, it does not do much for performance vs keeping the key, but helps replace old code). * Uses a more modern C++ iterator API, deprecates the old one. * Supports custom allocator (in case there is a wish to use a paged one). This class aims to unify all the associative template usage and replace it by this one: * Map<> (whereas key order does not matter, which is 99% of cases) * HashMap<> * OrderedHashMap<> * OAHashMap<>
* | / Split out bokeh_dof and copy effectsBastiaan Olij2022-05-1125-1210/+1864
| |/ |/|
* | Fix warnings found by Emscripten 3.1.10Rémi Verschelde2022-05-101-17/+5
| | | | | | | | | | Fix `-Wunused-but-set-variable`, `-Wunqualified-std-cast-call`, and `-Wliteral-range` warnings.
* | Fix instance uniform shader crash in custom functionsYuri Roubinsky2022-05-091-1/+1
|/
* Rename profiler "Idle Time" to "Process Time"Hugo Locurcio2022-05-052-8/+8
| | | | | References to "idle time" are progressively being replaced by "process time" throughout the engine to avoid confusion.
* Merge pull request #60772 from MightiestGoat/multimesh-uniform-setRémi Verschelde2022-05-051-0/+12
|\ | | | | Fix the uniform set creation of multimesh with a invalidated buffer
| * Check multimesh before uniform set creationmightygoat2022-05-051-0/+6
| |
| * Fix the uniform set creation of multimesh with a invalidated buffermightygoat2022-05-051-0/+6
| |
* | Merge pull request #60568 from Chaosus/shader_keyword_completionsRémi Verschelde2022-05-042-108/+494
|\ \ | |/ |/| Add keyword completion to shader editor
| * Add keyword completion to shader editorYuri Roubinsky2022-04-292-108/+494
| |
* | Merge pull request #58298 from Calinou/decal-distance-fade-use-easingRémi Verschelde2022-05-041-4/+5
|\ \
| * | Make Decal distance fade smootherHugo Locurcio2022-05-021-4/+5
| | | | | | | | | | | | | | | | | | | | | `smoothstep()` avoids the sudden transparency jump when entering or leaving a decal's distance fade margin distance. This in turn helps make opacity transitions less noticeable to the player, as it's less likely to catch the player's eye.
* | | Merge pull request #60723 from reduz/refactor-module-initializationRémi Verschelde2022-05-041-6/+0
|\ \ \
| * | | Refactor module initializationreduz2022-05-041-6/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * Changed to use the same stages as extensions. * Makes the initialization more coherent, helping solve problems due to lack of stages. * Makes it easier to port between module and extension. * removed the DRIVER initialization level (no longer needed).
* | | | Rename Basis get_axis to get_column, remove redundant methodsAaron Franke2022-05-0317-120/+120
| | | |
* | | | Merge pull request #51102 from Calinou/renderingserver-add-api-version-getterRémi Verschelde2022-05-039-0/+15
|\ \ \ \ | | | | | | | | | | Add `get_video_adapter_api_version()` to RenderingServer
| * | | | Add `get_video_adapter_api_version()` to RenderingServerHugo Locurcio2022-05-039-0/+15
| | |/ / | |/| | | | | | | | | | | | | | | | | | This method can be used to get the graphics API version currently in use (such as Vulkan). It can be used by projects for troubleshooting or statistical purposes.
* | | | Merge pull request #60627 from aaronfranke/rename-elementsRémi Verschelde2022-05-0317-299/+299
|\ \ \ \ | | | | | | | | | | Rename Transform2D and Basis `elements` to `columns` and `rows` respectively
| * | | | Rename Basis "elements" to "rows"Aaron Franke2022-04-299-174/+174
| | | | |
| * | | | Rename Transform2D "elements" to "columns"Aaron Franke2022-04-2911-125/+125
| | |_|/ | |/| |
* | | | Merge pull request #60714 from Calinou/typedef-remove-refRémi Verschelde2022-05-037-15/+15
|\ \ \ \ | |_|_|/ |/| | | Remove `RES` and `REF` typedefs in favor of spelled out `Ref<>`
| * | | Remove `RES` and `REF` typedefs in favor of spelled out `Ref<>`Hugo Locurcio2022-05-037-15/+15
| | |/ | |/| | | | | | | | | | | | | These typedefs don't save much typing compared to the full `Ref<Resource>` and `Ref<RefCounted>`, yet they sometimes introduce confusion among new contributors.
* | | Merge pull request #60553 from madmiraal/separate-display_safe_areaRémi Verschelde2022-05-032-0/+2
|\ \ \ | |/ / |/| |
| * | Fix screen_get_usable_rect returning display safe areaMarcel Admiraal2022-05-022-0/+2
| | |
* | | Merge pull request #60705 from awsker/fix-viewport-clearingRémi Verschelde2022-05-021-12/+8
|\ \ \ | | | | | | | | Viewport would be cleared even when clear_mode was set to never clear
| * | | Viewport would be cleared even when clear_mode was set to VIEWPORT_CLEAR_NEVERawsker2022-05-021-12/+8
| |/ /