Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-08-31 | Merge pull request #10305 from H4kor/gles3 | Juan Linietsky | |
Fixes a bug in multimesh_instance_get_color | |||
2017-08-31 | Merge pull request #10417 from bojidar-bg/x-fix-tilemap-transpose | Rémi Verschelde | |
Implement texture UV transpose in the gles3 renderer | |||
2017-08-31 | Merge pull request #10624 from letheed/master | Rémi Verschelde | |
Fix shadow filter pcf5 implemented as pcf7 | |||
2017-08-30 | Improved default directional shadow params, added bias split scale, closes #9828 | Juan Linietsky | |
2017-08-29 | Changed bools to uint32_t as this may be a compiler bug.. | Juan Linietsky | |
2017-08-29 | -Fixed screen edge SSAO filter, fixes #9678 | Juan Linietsky | |
-Raised the SSAO limits, making the effect a lot more useful -Still pending to enable tresholding to avoid some hollow places | |||
2017-08-29 | removed DISCARD built in variable, replaced by actual discard GLSL ↵ | Juan Linietsky | |
instruction, fixes #9677 | |||
2017-08-29 | Implement texture UV transpose in the gles3 renderer | Bojidar Marinov | |
Now tilemap rotations work again \o/ | |||
2017-08-29 | Merge pull request #10552 from RandomShaper/improve-posix | Rémi Verschelde | |
Improve Mac/UNIX conformance/reliability | |||
2017-08-28 | Merge pull request #10683 from marcelofg55/rtaudio_buffer_fix | Rémi Verschelde | |
Fix RtAudio driver buffer_size incorrect calculation | |||
2017-08-28 | Merge pull request #10692 from marcelofg55/wasapi_driver | Rémi Verschelde | |
Added new WASAPI driver for Windows | |||
2017-08-28 | Merge pull request #10662 from hoelzl/python3-v3 | Rémi Verschelde | |
Make build scripts Python 3 compatible | |||
2017-08-27 | -Moved script run to editor, removed from project | Juan Linietsky | |
-fixed to code completion -fix shader crash bug reported by tagcup | |||
2017-08-27 | Make build scripts Python3 compatible | Matthias Hoelzl | |
- The Windows, UWP, Android (on Windows) and Linux builds are tested with Scons 3.0 alpha using Python 3. - OSX and iOS should hopefully work but are not tested since I don't have a Mac. - Builds using SCons 2.5 and Python 2 should not be impacted. | |||
2017-08-27 | Dead code tells no tales | Rémi Verschelde | |
2017-08-27 | Added new WASAPI driver for Windows | Marcelo Fernandez | |
2017-08-27 | Fix RtAudio driver buffer_size incorrect calculation | Marcelo Fernandez | |
2017-08-27 | Use HTTPS URL for Godot's website in the headers | Rémi Verschelde | |
2017-08-26 | Added/Fixed null pointer checks | Wilson E. Alvarez | |
2017-08-26 | -Massive clean up to gizmos | Juan Linietsky | |
-Make sure handles are always visible (on top) -Fixed instanced scene selection (should work properly now) -Added interpolated camera -Customizable gizmo colors in editor settings | |||
2017-08-25 | Fixed opaque unshaded materials, they go through the regular opaque render ↵ | Juan Linietsky | |
list, closes #9917 | |||
2017-08-25 | fix shadow filter pcf5 implemented as pcf7 | letheed | |
2017-08-24 | Convert Object::cast_to() to the static version | Hein-Pieter van Braam | |
Currently we rely on some undefined behavior when Object->cast_to() gets called with a Null pointer. This used to work fine with GCC < 6 but newer versions of GCC remove all codepaths in which the this pointer is Null. However, the non-static cast_to() was supposed to be null safe. This patch makes cast_to() Null safe and removes the now redundant Null checks where they existed. It is explained in this article: https://www.viva64.com/en/b/0226/ | |||
2017-08-24 | Implement custom thread numbering for POSIX | Pedro J. Estébanez | |
For every UNIX-derived (Android, Linux, macOS, iOS) flavor, a global counter is atomically incremented on thread start. That id is kept as thread-local storage. Therefore, thread ids are sequential numbers, trivially comparable. This improves the previous state of things, in which `pthread_t` were casted to `Thread::ID` and unportabily compared. Also big, ugly thread ids appeared. | |||
2017-08-24 | Make OS::delay_usec() more reliable on UNIX | Pedro J. Estébanez | |
Implemented with `nanosleep()`. `usleep()` is deprecated. Also loops to ensure that __at least__ the requested time is waited, accounting for spurious interruptions. May help in situations like reattempting to connect to the debugger. | |||
2017-08-23 | fix ssao issue with intel hd**** hardwares | Gilles Roudiere | |
2017-08-22 | Fade last cascade in directional shadow, closes #9779 | Juan Linietsky | |
2017-08-22 | Invalid materials or shaders will now interrupt the next chain in materials, ↵ | Juan Linietsky | |
closes #9570 | |||
2017-08-22 | Fix Reindhart tonemapping, invalid type in signature | Rémi Verschelde | |
Fixes #10533. | |||
2017-08-21 | Several fixes to subsurface scattering. Closes #9530 | Juan Linietsky | |
2017-08-22 | Merge pull request #10340 from Rubonnek/remove-unnecessary-assignments | Rémi Verschelde | |
Removed unnecessary assignments | |||
2017-08-21 | Merge pull request #10433 from djrm/pr_svg_support | Rémi Verschelde | |
SVG support | |||
2017-08-21 | Revert "Reworked change_dir to support symlinks" | Juan Linietsky | |
2017-08-21 | Removed unnecessary assignments | Wilson E. Alvarez | |
2017-08-20 | Implemented missing opaque prepass render mode, fixes #9452 | Juan Linietsky | |
2017-08-20 | Added support for SVG | Daniel J. Ramirez | |
2017-08-20 | Properly initialize color hinted vec4 uniforms to 0,0,0,1 fixes #9354 | Juan Linietsky | |
2017-08-19 | -Fix all shadow and culling related issues, fixes #9330 | Juan Linietsky | |
2017-08-19 | Added polygon antialiasing, but it does not work on nvidia. Will have to try ↵ | Juan Linietsky | |
something else.. | |||
2017-08-18 | Merge pull request #10406 from marcelofg55/closest_power_of_2 | Rémi Verschelde | |
Add closest_power_of_2 func and implement mix_rate/latency on OS X | |||
2017-08-17 | Add closest_power_of_2 func and implement mix_rate/latency on OS X | Marcelo Fernandez | |
2017-08-17 | Oops, fixed wrong color masking problem. Closes #10149 | Juan Linietsky | |
2017-08-17 | Merge pull request #8144 from supagu/symlink | Rémi Verschelde | |
Reworked change_dir to support symlinks | |||
2017-08-16 | Fix particles emitting when emitting is set to false in scene | Bojidar Marinov | |
Caused by #10297 calling particles_restart() on the same frame as the one set_emitting(false) is called. The rasterizer would wait a frame, and then set emitting back to true. | |||
2017-08-16 | Synchronize parameter names in definition and declaration | TwistedTwigleg | |
Fixes #10244. | |||
2017-08-16 | Merge pull request #10343 from Faless/html5_fixes_2 | Rémi Verschelde | |
Use precision for samples only when #version 300 es | |||
2017-08-16 | Use precision for samples only when #version 300 es | Fabio Alessandrelli | |
Fix #10332 | |||
2017-08-14 | Use const reference where favorable | Wilson E. Alvarez | |
2017-08-12 | fixed multimesh_instance_get_color | Niko Abeler | |
2017-08-11 | Some fixes for shaders and WebGL2 | Fabio Alessandrelli | |
Add padding to UBO data to be multiple of 16 bytes Add precision definition for samplers Replace texture2D (deprecated) with texture in shaders |