summaryrefslogtreecommitdiff
path: root/drivers
AgeCommit message (Collapse)Author
2018-11-16Removed unnecesary normal multiplication (only culling was really needed), ↵Juan Linietsky
fixes #17776
2018-11-16Proxies were being mishandled, leading to the now fixed #17651Juan Linietsky
2018-11-14Do not error on empty shader, just treat it as invalid by default. Fixes #15998.Juan Linietsky
2018-11-14Merge pull request #23248 from dlasalle/fogJuan Linietsky
Add parameters for fog end depth and use alpha as density.
2018-11-14Merge pull request #23702 from JFonS/fix_2d_particles_scaleJuan Linietsky
Make 2D particles work OOTB (again)
2018-11-14Cleaned up and fixed the base_changed function in rasterizers, also fixes #15617Juan Linietsky
2018-11-13Add parameter for fog max depth and use alpha as density.Dominique LaSalle
2018-11-13Make 2D particles work OOTB (again)JFonS
2018-11-12Merge pull request #22639 from tagcup/optRémi Verschelde
Avoid some unnecessary calculations in scene.glsl.
2018-11-12Merge pull request #23254 from ibrahn/gles2-var-init-cleanupRémi Verschelde
Cleaning up some uninitialised variables in GLES2 stuff.
2018-11-10Was missing calling _mkid() in shader_gles2.cpp, regarding fix for #12880Juan Linietsky
2018-11-10Avoid double underscore from breaking glsl compiler, fixes #12880Juan Linietsky
2018-11-05Merge pull request #23502 from Rubonnek/simplified-logicRémi Verschelde
Simplified boolean logic in GLES2/3 rasterizers
2018-11-04Remove animation loop from ParticlesMaterial + improvements to CPUParticles2DJFonS
Remove animation loop from ParticlesMaterial and move it to SpatialMaterial for 3D particles and Particles2D for the 2D case. Added animation to CPUParticles2D as well as the "Convert to CPUParticles2D" to the PAarticles2D menu.
2018-11-04Simplified boolean logic in GLES2/3 rasterizersWilson E. Alvarez
2018-11-02Cleaning up some uninitialised variables in GLES2 stuff.Ibrahn Sahir
Initialise keep_original_textures and use_fast_texture_filter in storage config. Removed any other variables from storage config that were both unused and uninitialised to avoid future confusion (if they're needed it's easier to spot an uninitialised variable problem in a PR that adds the variable again rather than just uses it). Copied storage Texture struct constructor from GLES3 implementation (except where variables were already initialised with different values). Gives us sensible tested defaults for previously uninitialised vars. Added assignments for state.current_main_tex based on same in GLES3.
2018-11-01Merge pull request #23125 from JFonS/fix_texture_get_dataJuan Linietsky
Implement rasterizer texture_get_data on OpenGL ES
2018-11-01Implement rasterizer texture_get_data on OpenGL ESJFonS
2018-10-29Merge pull request #23388 from eska014/html5-stubexecRémi Verschelde
Add proper stubs for OS_JavaScript::execute(), get_process_id(), kill()
2018-10-29Merge pull request #23386 from eska014/buffersubdataRémi Verschelde
Use BufferSubData instead of MapBufferRange in non-ES platforms
2018-10-29Add proper stubs for OS_JavaScript::execute(), get_process_id(), kill()Leon Krause
Avoids linker warnings and errors about undefined references.
2018-10-29Merge pull request #23279 from marcelofg55/osx_serverRémi Verschelde
Server platform works on OS X too
2018-10-29Use BufferSubData instead of MapBufferRange in HTML5 platformLeon Krause
WebGL does not support MapBufferRange or UnmapBuffer. Also used in non-ES platforms where an extra-copy is avoided.
2018-10-29Server platform works on OS X tooMarcelo Fernandez
2018-10-28Fix GLES2 automatic texture lookup in canvasPedro J. Estébanez
After this change the color will only be fetched if the shader code doesn't use it explicitly, to match the GLES3 behaviour. Fixes #23179.
2018-10-25Merge pull request #23091 from aaronfranke/mingw-warningsRémi Verschelde
Fix some compile warnings for Windows from Linux
2018-10-25GLES2: Fix shadows shader error for SpotLightsRémi Verschelde
Fixes #23268.
2018-10-25Merge pull request #22779 from Superwaitsum/LimitSettingsRémi Verschelde
Limit several project settings
2018-10-24Add some limits on the Editor SettingsSuperwaitsum
2018-10-24Merge pull request #23186 from BastiaanOlij/fix_gles2_stereo_skyRémi Verschelde
Fixed stereoscopic (VR) sky in GLES2
2018-10-24Merge pull request #23175 from marcelofg55/input_buffer_fixRémi Verschelde
Fix possible audio input buffer issues
2018-10-24GLES2: Fix typo in tangent calculationRémi Verschelde
Thanks @tagcup for the find. Fixes #23234.
2018-10-22Fix gles3 shader to actually multiply specular light by rev_amount for fog ↵Dominique LaSalle
calculations.
2018-10-21Fixed stereoscopic (VR) sky in GLES2Bastiaan Olij
2018-10-20Fix possible audio input buffer issuesMarcelo Fernandez
2018-10-19Fix compile warnings for Windows from LinuxAaron Franke
At least the ones I got when I compiled it using Mingw64 POSIX on Xubuntu 18.04. Plus use the Size2 of get_window_size() directly, rather than reconstructing it.
2018-10-19Fixing warnings generated by MSVCDualtagh Murray
Fixes #22684.
2018-10-16Merge pull request #22980 from CakHuri/remove-include-duplRémi Verschelde
Removed duplication of include(s)
2018-10-13Removed duplication of include(s):M. Huri
- "collision_solver_sat.h". - "shaders/copy.glsl.gen.h"
2018-10-12Fixed issues with audio input on some MacsMarcelo Fernandez
2018-10-11Merge pull request #22800 from QbieShay/depth_writeRémi Verschelde
Added the ability to write to gl_FragDepth.
2018-10-11Avoid some unnecessary calculations in scene.glsl.Ferenc Arn
2018-10-08Fixes to CPU particles for performance and avoiding NaNs.Juan Linietsky
2018-10-07Baker fixesJuan Linietsky
2018-10-07Safer getcwd in DirAccessFabio Alessandrelli
Fix [-Wunused-result]
2018-10-07Avoid possible overflow in OS_Unix readlinkFabio Alessandrelli
Also fix [-Wunused-result]
2018-10-07Merge pull request #22722 from akien-mga/fix-warningsRémi Verschelde
Fix more "may be used initialized" warnings from GCC 7
2018-10-07Merge pull request #22752 from aaronfranke/equals-redundantRémi Verschelde
Remove redundant "== true" and "== false" code
2018-10-07Merge pull request #22782 from eska014/gles2-uniform-precisionRémi Verschelde
Fix GLES2 uniform precision
2018-10-06Remove redundant "== false" codeAaron Franke
Some of this code has been re-organized. f