summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-02-24Removed debug function.Juan Linietsky
2019-02-24Many separate fixes to ensure non power of 2 textures work on GLES2, closes ↵Juan Linietsky
#25897 and many others
2019-02-25Merge pull request #26255 from hpvb/fix-26239Hein-Pieter van Braam
Explicitly use floating point numbers in the our shaders
2019-02-25Merge pull request #26160 from marxin/come-up-with-use_gccHein-Pieter van Braam
Come up with use_gcc.
2019-02-25Merge pull request #26161 from marxin/add-Wwrite-stringsHein-Pieter van Braam
Add -Wwrite-strings into all and extra warnings.
2019-02-25Merge pull request #26242 from serados/init_mouse_pos_winHein-Pieter van Braam
Update Windows global mouse position at startup
2019-02-24Explicitly use floating point numbers in the our shadersHein-Pieter van Braam
We need to be explicit about using floating point numbers in our shaders for compatibility with mobile GLES drivers.
2019-02-24Merge pull request #26253 from hpvb/vpx-use-x86incHein-Pieter van Braam
Disable all use of avx instructions
2019-02-24Disable all use of avx instructionsHein-Pieter van Braam
For some reason CPU feature detection isn't working on our vendored libvpx. This breaks Godot on older CPUs (pre-2011).
2019-02-24Merge pull request #26240 from eska014/html5-preload-noownRémi Verschelde
Properly preload files, always use stdout/-err in HTML5 platform
2019-02-25Update Windows global mouse position at startupJunwei Ng
Fixes issue #8145 for Windows, in the same manner as issue #21910 fixed it for X11.
2019-02-24Ensure all properties are refreshed when setting a script, fixes #24845Juan Linietsky
2019-02-24Prevent circular references to scene being saved, fixes #24384Juan Linietsky
2019-02-24Merge pull request #25018 from AllanDaemon/#24895George Marques
Fix support for optional parameters in setters
2019-02-24Use stdout/-err for all messages in HTML5 platformLeon Krause
2019-02-24Fixed issue with buffers being wrongly cleared, closes #25484Juan Linietsky
2019-02-24Merge pull request #26171 from Calinou/fix-wrapi-crashRémi Verschelde
Fix crash when using `wrapi()` with a range of zero
2019-02-24Merge pull request #26214 from neikeq/defval-plsIgnacio Etcheverry
Fix default value of EditorSpatialGizmo.add_mesh method bind
2019-02-23Clear canvas item after rendering font, fixes #23774Juan Linietsky
2019-02-24Fix default value of EditorSpatialGizmo.add_mesh method bindIgnacio Etcheverry
2019-02-24Merge pull request #26154 from hpvb/disable-via-padlockHein-Pieter van Braam
Disable support for VIA Padlock
2019-02-24Disable support for VIA PadlockHein-Pieter van Braam
This code defines a symbol 'unsupported' which is also in a newer version of libwebsockets. To fix 32bit linux builds just disable padlock support. Processors that support this are rare and old.
2019-02-23Remove copy and use instance material override in gizmos, fixes #23783Juan Linietsky
2019-02-23Do not crash on empty path, closes #23701Juan Linietsky
2019-02-23Fix vertex lighting in GLES2, closes #25365Juan Linietsky
2019-02-23Merge pull request #26210 from neikeq/issue-26209Ignacio Etcheverry
C#: Fix Vector2.AngleToPoint
2019-02-23C#: Fix Vector2.AngleToPointIgnacio Etcheverry
Fixes #26209
2019-02-23-Treat scalar conversions when calling functions as error, closes #24261Juan Linietsky
-Make shader editor display errors if exist when just opening it -Make ShaderMaterial not lose parameters if opened in error.
2019-02-23Merge pull request #26203 from neikeq/csharp-basisRémi Verschelde
C#: Basis fixes and cleanup
2019-02-23Merge pull request #26204 from bruvzg/macos_move_to_fgRémi Verschelde
[macOS] Change `move_window_to_foreground` to take focus.
2019-02-23Fix file preloading warning in HTML5 platformLeon Krause
2019-02-23[macOS] Make `move_window_to_foreground` to take focus in addition to moving ↵bruvzg
window to front.
2019-02-23C#: Basis fixes and cleanupIgnacio Etcheverry
Fix Basis operator[int]. Now it returns columns instead of rows. Fix Transform2D.AfficeInverse() mutating rather than returning a new Transform2D.
2019-02-23Fix crash when using `wrapi()` with a range of zeroHugo Locurcio
`wrapi()` and `wrapf()` will now return the value of the `min` parameter if the range is equal to zero.
2019-02-23Make allowed pid for window takeover happen immediately, fixes #21431Juan Linietsky
2019-02-23Merge pull request #26189 from AinaSG/masterRémi Verschelde
Enabling ipv6 in libwebsockets
2019-02-23Ensure move and slide snap respects stop on slope, fixes #26180Juan Linietsky
2019-02-23Fix invalid change from CLAMP to MAX in #26099Rémi Verschelde
CLAMP limits the value between the two bounds, so for unsigned ints it should be replaced by MIN(val, max), not MAX. The issue in voxel_light_baker.cpp was fixed in 4f697f7. Fixes #26170.
2019-02-23Merge pull request #26184 from MarianoGnu/fixesRémi Verschelde
TileSetEditor: Show Edition Context by demand
2019-02-23Merge pull request #26157 from YeldhamDev/splitcont_update_checkRémi Verschelde
Make 'SplitContainer' update drawing only if actually needs to
2019-02-23Merge pull request #26183 from marcelofg55/wasapi_notsupported_formatHein-Pieter van Braam
Fix WASAPI driver not working when the device doesn't supports the mix format
2019-02-23Come up with use_gcc.marxin
Add new method. Fix wrong version condition for -fpie.
2019-02-23Add -Wwrite-strings into all and extra warnings.marxin
2019-02-23Enabling ipv6 in libwebsocketsAina
2019-02-23TileSetEditor: Show Edition Context by demandMariano Suligoy
2019-02-23Fix WASAPI driver not working when the device doesn't supports the mix formatMarcelo Fernandez
2019-02-22Change MAX for MIN, fixes #26170Juan Linietsky
2019-02-23Merge pull request #25683 from wombatstampede/patch-1Hein-Pieter van Braam
Update CPUParticles.xml
2019-02-23Merge pull request #26158 from marcelofg55/wasapi_init_errHein-Pieter van Braam
Extended WASAPI Initialize error message
2019-02-22Added a workaround to avoid crashes due to how TileSet editor works, fixes ↵Juan Linietsky
#23672 Also fixed a few uninitialized memory variables.