summaryrefslogtreecommitdiff
path: root/servers
AgeCommit message (Collapse)Author
2020-07-28Fixed next_pass materials not being drawnBrian Semrau
2020-07-27Make all String float conversion methods be 64-bitAaron Franke
2020-07-27Revert "Allow Area2D and 3D mouse events without a collision layer"Rémi Verschelde
This reverts commit 7eebb06b5571437828d8c5099558c303c72cd1f4.
2020-07-26Merge pull request #40487 from nekomatata/virtual-keyboard-enter-fixesRémi Verschelde
Fix Return key events in LineEdit & TextEdit on Android
2020-07-26Fix Return key events in LineEdit & TextEdit on AndroidPouleyKetchoupp
Depending on the device implementation, editor actions could be received with different action ids or not at all for multi-line. Added a parameter to virtual keyboards to properly handle single-line and multi-line cases in all situations. Single-line: Input type set to text without multiline to make sure actions are sent. IME options are set to DONE action to force action id consistency. Multi-line: Input type set to text and multiline to make sure enter triggers new lines. Actions are disabled by the multiline flag, so '\n' characters are handled in text changed callbacks.
2020-07-26Merge pull request #38727 from Riteo/tiling-wm-issues-testsRémi Verschelde
Fixes for windows in X11 tiling WMs
2020-07-23Fixes RenderingServer crashes reported by #39951Juan Linietsky
Supersedes #40026
2020-07-23DisplayServer: separate window showing into another functionLorenzo Cerqua
When creating a window, Godot would first register it to the WM(show it) and then set its flags. This works fine on a floating WM, but on tiling WMs as soon as a window gets registered the WM immediately acts on the window by scaling it up and treating it as a generic window, being registered without any special flags. This commit separates the showing of the window into another function and calls it after the most important flags are set, making windows with special flags(eg. all popups) work again on tiling WMs. Fixes #37930
2020-07-22Refactor light clusteringJuan Linietsky
Move from high end to shared, so all renderers use clustering.
2020-07-21Merge pull request #40450 from asmaloney/spellingRémi Verschelde
Fix spelling & grammar in comments, docs, and messages
2020-07-21Fix spelling & grammar in comments, docs, and messagesAndy Maloney
2020-07-17Fix spelling of a var, a struct, and message outputAndy Maloney
2020-07-15Merge pull request #40268 from DanielZTing/masterRémi Verschelde
Fix cancel/OK button order on macOS
2020-07-15Merge pull request #40389 from Chaosus/fix_shaderYuri Roubinsky
Fix some incorrect conversions which lead to crash in shaders
2020-07-14Fix some incorrect conversions which lead to crash in shadersYuri Roubinsky
2020-07-14Properly pass safe margin on initialization.Juan Linietsky
Fixes jitter.
2020-07-11Merge pull request #40272 from clayjohn/VULKAN-time-slicingRémi Verschelde
Add incremental update mode to sky
2020-07-11Add incremental update mode to skyclayjohn
2020-07-11Merge pull request #40193 from KoBeWi/dem_pikksRémi Verschelde
Allow Area2D and 3D mouse events without collision layer
2020-07-11Merge pull request #40266 from Chaosus/fma_fixRémi Verschelde
Enables 'fma' for GLES2
2020-07-10Fix cancel/OK button order on macOSDaniel Ting
The macOS platform convention regarding button order is cancel on left, OK on right.
2020-07-10Enables 'fma' for GLES2Yuri Roubinsky
2020-07-10Merge pull request #40253 from madmiraal/add-override-keywordsRémi Verschelde
Add override keywords.
2020-07-10Added 'fma' function to shader languageYuri Roubinsky
2020-07-10Add override keywords.Marcel Admiraal
2020-07-10Allow Area2D and 3D mouse events without a collision layerTomasz Chabora
Co-authored-by: madmiraal <madmiraal@users.noreply.github.com>
2020-07-04Remove elements from monitored_bodies and monitored_areas as they areMarcel Admiraal
processed before calling the callback, instead of after they have all been processed, because the callbacks may readd them.
2020-07-04[macOS] Implement seamless display scaling.bruvzg
2020-07-03fix laxist collision detection on one way shapesCevantime
2020-07-02Merge pull request #37350 from aaronfranke/force-impulseRémi Verschelde
Refactor physics force and impulse code to use (force, position) order
2020-07-02Merge pull request #40018 from Faless/js/more_improvements_4.0Rémi Verschelde
HTML5 fixes, refactor, audio fallback, fixed FPS.
2020-07-01Add default 50ms output_latency web override.Fabio Alessandrelli
Hopefully a good tradeoff between latency and performance on most browsers.
2020-07-01Merge pull request #40016 from akien-mga/environment-code-cleanupRémi Verschelde
Environment: Refactor code for readability + more
2020-07-01Merge pull request #38713 from aaronfranke/string-64bitRémi Verschelde
Make all String integer conversion methods be 64-bit
2020-07-01Environment: Refactor code for readability + moreRémi Verschelde
- Makes all boolean setters/getters consistent. - Fixes bug where `glow_hdr_bleed_scale` was not used. - Split CameraEffects to their own source file. - Reorder all Environment method and properties declarations, definitions and bindings to be consistent with each other and with the order of property bindings. - Bind missing enum values added with SDFGI. - Remove unused SDFGI enhance_ssr boolean. - Sync doc changes after SDFGI merge and other misc changes.
2020-07-01Added const qualifier support for function arguments in shadersYuri Roubinsky
2020-06-30Merge pull request #35633 from Xrayez/physics-shape-propertyRémi Verschelde
Expose shape property for shape query parameters classes
2020-06-30Merge pull request #39953 from neikeq/fix-missing-defval-regr-from-39827Rémi Verschelde
Fix missing DEFVAL in RenderingDevice.storage_buffer_create
2020-06-29Merge pull request #39894 from madmiraal/fix-39768Rémi Verschelde
Trigger broadphase update when changing collision layer/mask.
2020-06-29Fix missing DEFVAL in RenderingDevice.storage_buffer_createIgnacio Etcheverry
2020-06-28Slight occlusion improvements.Juan Linietsky
2020-06-27Trigger broadphase update when changing collision layer/mask, andMarcel Admiraal
check for collision layer/mask changes in 2D hash grid broadphase update.
2020-06-27Merge pull request #39869 from Chaosus/shader_fix_returnRémi Verschelde
Prevents usage of return in main shader functions
2020-06-27Prevents usage of return in main shader functionsYuri Roubinsky
2020-06-27Fixes recently introduced shader leaksqarmin
2020-06-26Addition of SDFGI for open world global illuminationJuan Linietsky
Move GI to a deferred pass
2020-06-26Expose shape property for shape query parameters classesAndrii Doroshenko (Xrayez)
Co-authored-by: PouleyKetchoupp <pouleyketchoup@gmail.com>
2020-06-25Fix few places in shaders where const passing still incorrectYuri Roubinsky
2020-06-21Check for motion in cast_motion() before doing Bullet convexSweepTest().Marcel Admiraal
Also ensure that default closest_safe and closest_unsafe values are defined in cast_motion() and before cast_motion() is called.
2020-06-19Implemented global const array to shadersYuri Roubinsky