summaryrefslogtreecommitdiff
path: root/drivers
AgeCommit message (Collapse)Author
2017-08-30Improved default directional shadow params, added bias split scale, closes #9828Juan Linietsky
2017-08-29Changed bools to uint32_t as this may be a compiler bug..Juan Linietsky
2017-08-29-Fixed screen edge SSAO filter, fixes #9678Juan Linietsky
-Raised the SSAO limits, making the effect a lot more useful -Still pending to enable tresholding to avoid some hollow places
2017-08-29removed DISCARD built in variable, replaced by actual discard GLSL ↵Juan Linietsky
instruction, fixes #9677
2017-08-29Merge pull request #10552 from RandomShaper/improve-posixRémi Verschelde
Improve Mac/UNIX conformance/reliability
2017-08-28Merge pull request #10683 from marcelofg55/rtaudio_buffer_fixRémi Verschelde
Fix RtAudio driver buffer_size incorrect calculation
2017-08-28Merge pull request #10692 from marcelofg55/wasapi_driverRémi Verschelde
Added new WASAPI driver for Windows
2017-08-28Merge pull request #10662 from hoelzl/python3-v3Rémi Verschelde
Make build scripts Python 3 compatible
2017-08-27-Moved script run to editor, removed from projectJuan Linietsky
-fixed to code completion -fix shader crash bug reported by tagcup
2017-08-27Make build scripts Python3 compatibleMatthias 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-27Dead code tells no talesRémi Verschelde
2017-08-27Added new WASAPI driver for WindowsMarcelo Fernandez
2017-08-27Fix RtAudio driver buffer_size incorrect calculationMarcelo Fernandez
2017-08-27Use HTTPS URL for Godot's website in the headersRémi Verschelde
2017-08-26Added/Fixed null pointer checksWilson E. Alvarez
2017-08-26-Massive clean up to gizmosJuan 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-25Fixed opaque unshaded materials, they go through the regular opaque render ↵Juan Linietsky
list, closes #9917
2017-08-24Convert Object::cast_to() to the static versionHein-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-24Implement custom thread numbering for POSIXPedro 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-24Make OS::delay_usec() more reliable on UNIXPedro 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-23fix ssao issue with intel hd**** hardwaresGilles Roudiere
2017-08-22Fade last cascade in directional shadow, closes #9779Juan Linietsky
2017-08-22Invalid materials or shaders will now interrupt the next chain in materials, ↵Juan Linietsky
closes #9570
2017-08-22Fix Reindhart tonemapping, invalid type in signatureRémi Verschelde
Fixes #10533.
2017-08-21Several fixes to subsurface scattering. Closes #9530Juan Linietsky
2017-08-22Merge pull request #10340 from Rubonnek/remove-unnecessary-assignmentsRémi Verschelde
Removed unnecessary assignments
2017-08-21Merge pull request #10433 from djrm/pr_svg_supportRémi Verschelde
SVG support
2017-08-21Revert "Reworked change_dir to support symlinks"Juan Linietsky
2017-08-21Removed unnecessary assignmentsWilson E. Alvarez
2017-08-20Implemented missing opaque prepass render mode, fixes #9452Juan Linietsky
2017-08-20Added support for SVGDaniel J. Ramirez
2017-08-20Properly initialize color hinted vec4 uniforms to 0,0,0,1 fixes #9354Juan Linietsky
2017-08-19-Fix all shadow and culling related issues, fixes #9330Juan Linietsky
2017-08-19Added polygon antialiasing, but it does not work on nvidia. Will have to try ↵Juan Linietsky
something else..
2017-08-18Merge pull request #10406 from marcelofg55/closest_power_of_2Rémi Verschelde
Add closest_power_of_2 func and implement mix_rate/latency on OS X
2017-08-17Add closest_power_of_2 func and implement mix_rate/latency on OS XMarcelo Fernandez
2017-08-17Oops, fixed wrong color masking problem. Closes #10149Juan Linietsky
2017-08-17Merge pull request #8144 from supagu/symlinkRémi Verschelde
Reworked change_dir to support symlinks
2017-08-16Fix particles emitting when emitting is set to false in sceneBojidar 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-16Synchronize parameter names in definition and declarationTwistedTwigleg
Fixes #10244.
2017-08-16Merge pull request #10343 from Faless/html5_fixes_2Rémi Verschelde
Use precision for samples only when #version 300 es
2017-08-16Use precision for samples only when #version 300 esFabio Alessandrelli
Fix #10332
2017-08-14Use const reference where favorableWilson E. Alvarez
2017-08-11Some fixes for shaders and WebGL2Fabio Alessandrelli
Add padding to UBO data to be multiple of 16 bytes Add precision definition for samplers Replace texture2D (deprecated) with texture in shaders
2017-08-11Explicitily unsed AI_NUMERICHOST flag to fix HTML5Fabio Alessandrelli
2017-08-08-Restored Sprite3D to working function, fixes #2061, fixes #9738Juan Linietsky
-Restored an alpha scissor property in Material
2017-08-08sorry, leftover bug fixedJuan Linietsky
2017-08-08-Made visual server time affected by global time scale, closes #5583Juan Linietsky
-Restored time rollover in visual server
2017-08-07Restored black bars and custom images instead of black bars, closes #1571Juan Linietsky
2017-08-07Merge pull request #10055 from henkz1/immediateThomas Herzog
Fix ImmediateGeometry