summaryrefslogtreecommitdiff
path: root/drivers
AgeCommit message (Collapse)Author
2015-04-03fix shadow issue with lights in mix mode, i think fixes #1611Juan Linietsky
2015-04-03Changes to LightJuan Linietsky
-=-=-=-=-=-=-=-= -Changed material unshaded property for an enum, which supports light-only shading -Added a "Mix" shading mode, useful for using lights as masks -Added energy parameter to Light2D
2015-04-02Beta1 Attempt #1Juan Linietsky
-=-==-=-=-=-=-=- -Small fixes in canvas item light shader -Fixed compilation in server target -Export for Android makes 32 bits display as default -changed version to 1.1beta1
2015-04-01fix shadow attenuationJuan Linietsky
2015-03-31read depth fixesJuan Linietsky
2015-03-31fixes for light2d in androids that do not supportJuan Linietsky
read depth
2015-03-25fixes to shader to get most new demos working on mobilereduz
2015-03-22fixes to new window management APIJuan Linietsky
-needs testing on Linux -needs testing on Windows -NEED SOMEONE TO IMPLEMENT IT ON OSX!! PLEASE HELP!
2015-03-22Merge pull request #1380 from ElectricSolstice/wparentheses_removalJuan Linietsky
Changed code to remove gcc -Wparentheses warnings.
2015-03-22Merge pull request #1438 from Spooner/fix_isometric_demoJuan Linietsky
Fix isometric demo
2015-03-22Merge pull request #1512 from the-mech/masterJuan Linietsky
[Fix] make_dir_recursive on Windows
2015-03-21New option to show/hide hidden filesrollenrolm
2015-03-21signed distance field font supportJuan Linietsky
2015-03-16New option to send canvas to render bufferJuan Linietsky
allows to use 3D environment effects for post processing such as Glow, Bloom, HDR, etc. in 2D.
2015-03-15Update file_access_windows.cpp for mingw cross-compileMatthew Hughes
Cross compiling on linux failed on this file. Changing case of the windows.h and shlwapi.h allows mingw to find these headers but setting WINVER 0x0500 is needed for the compiler to find ReplaceFileW
2015-03-14[Fix] make_dir_recursive on WindowsRoman Nekrassow
function normally tries to create c: which isn't possible, because the access is denied, handling ERROR_ACCESS_DENIED as ERR_ALREADY_EXISTS lets the function skip the creation of c: .
2015-03-12back buffer copy node, to improve on texscreen()Juan Linietsky
back buffer copy node and respective demo
2015-03-10New Demo, Screen Space ShadersJuan Linietsky
-Fixes to screen space shaders. -Fixes to isometric light demo.
2015-03-09lot of work on 2D lighting and isometric mapsJuan Linietsky
added a new demo, isometric_light that does full isometric sorting, lights, shadows, etc.
2015-03-02time was not being set properly with the rest of the uniforms.Juan Linietsky
2015-03-02support for 2D shadow castersJuan Linietsky
Added support for 2D shadow casters. *DANGER* Shaders in CanvasItem CHANGED, if you are using shader in a CanvasItem and pull this, you will lose them. Shaders now work through a 2D material system similar to 3D. If you don't want to lose the 2D shader code, save the shader as a .shd, then create a material in CanvasItem and re-assign the shader.
2015-03-01changed the blending function when using a transparent render target so that ↵romulox_x
it blends properly
2015-02-22Merge branch 'master' of https://github.com/okamstudio/godotBil Bas (Spooner)
2015-02-21changed viewport clearing to use the alpha value of the clear color, and ↵romulox_x
made the transparent bg option of viewport force a clear color of 0,0,0,0
2015-02-21Merge pull request #1369 from not-surt/tile_rotationJuan Linietsky
Tile Rotation
2015-02-19Merge branch 'master' of https://github.com/okamstudio/godotBil Bas (Spooner)
2015-02-18support for light and normal mapping in 2DJuan Linietsky
2015-02-16Changed code to remove gcc -Wparentheses warnings.ElectricSolstice
2015-02-16Corrected behaviour of File.READ_WRITE mode (fixes #378)Bil Bas (Spooner)
2015-02-15Merge branch 'master' of https://github.com/okamstudio/godotCarl Olsson
Conflicts: scene/2d/tile_map.cpp
2015-02-14-resolved shader set parameter bug, closes #1361Juan Linietsky
2015-02-13Reorder tile transforms so transpose occurs before flips. Much more ↵Carl Olsson
intuitive for flipping transposed tiles.
2015-02-11Merge branch 'master' of https://github.com/okamstudio/godotCarl Olsson
Conflicts: demos/2d/polygon_path_finder_demo/.fscache
2015-02-10fixes to skinned bufferJuan Linietsky
should avoid targets with large objects using morphs also skinned buffer size is properly customizable on project settings.
2015-02-09ability to customize max render elementsJuan Linietsky
should close #1339
2015-02-09Merge pull request #1281 from sanikoyes/Pr-fix-rtt-filtersJuan Linietsky
Pr-fix-rtt-filters
2015-02-02Merge branch 'master' of https://github.com/okamstudio/godotCarl Olsson
2015-02-02Working TileMap tile transpose transform.Carl Olsson
2015-01-27fix build on freebsdsambler
Add some needed includes Provide freebsd variation of get_executable_path Provide variation of execv so that either full path or appname to be found within $PATH can be used
2015-01-21fixed world vertex issues in canvas item shaderJuan Linietsky
2015-01-20Fixed bug in 3D materialJuan Linietsky
textures that failed to load should now load again properly
2015-01-20Fixes to texscreen, fixes to white testcubeJuan Linietsky
2015-01-20Visual Shader Editing for 2DJuan Linietsky
Editing 2D shaders with visual editor seems to work now.
2015-01-20Fix filter options not works in render target texturesanikoyes
2015-01-19Color Ramp and Curve Map added to visual shader editing.Juan Linietsky
Added Color Ramp and Curve Map to shader nodes. Fixed an issue that crashed Godot Editor right when opened.
2015-01-14Add missing shader function: refractsanikoyes
2015-01-13-begin work on unidirectional collision detectionJuan Linietsky
-fixed performance issue in new 2D engine -texscreen() working in shader 2D
2015-01-12-fixed issue with shader not being reset on layers, closes #1199Juan Linietsky
-ability for shader to use parent shader and params, closes #1198
2015-01-12-Initial working(?) implementation of shaders for 2D. Lighting still not ↵Juan Linietsky
there though. Check for reference: https://github.com/okamstudio/godot/wiki/shader
2015-01-112D shader progressreduz