summaryrefslogtreecommitdiff
path: root/servers
AgeCommit message (Collapse)Author
2022-11-17Finish implementing Canvas Background modeclayjohn
2022-11-17Merge pull request #68779 from dzil123/fix_renderdummy_mesh_surface_overflowRémi Verschelde
RendererDummy - Fix buffer overflow due to stale mesh_get_surface
2022-11-17RendererDummy fix buffer overflow due to mesh_get_surfacedzil123
2022-11-16GLES3 TextureStorage - add missing null checksdzil123
2022-11-16Merge pull request #68718 from dzil123/fix_fog_shader_buffer_overflowRémi Verschelde
Fix shader compiler asan out of bounds
2022-11-15Mark shader built-ins as used when passed to functions as out parameter Yuri Rubinsky
2022-11-15Merge pull request #67948 from DeeJayLSP/split_webpRémi Verschelde
Overhaul WebP packer and split compression options
2022-11-15Overhaul WebP packer and split compression optionsDeeJayLSP
2022-11-15Fix Fog shader buffer overflowdzil123
2022-11-15Merge pull request #68673 from clayjohn/RD-alpha-hashRémi Verschelde
Fix alpha hash by correcting typos and doing calculations in object space
2022-11-15Merge pull request #68426 from clayjohn/GLES3-particlesRémi Verschelde
Add GPUParticles to the OpenGL3 renderer.
2022-11-15Merge pull request #68487 from clayjohn/RD-mobile-rasterRémi Verschelde
Use raster versions of copy effects for 2D operations when using the mobile renderer
2022-11-15Merge pull request #68628 from clayjohn/shadowsRémi Verschelde
Implement is_animated and casts_shadows
2022-11-14Add GPUParticles to the OpenGL3 renderer.clayjohn
This includes collision (2D SDF, Box, Sphere, Heightmap), attraction (Box, Sphere), and all sorting modes. This does not include 3D SDF collisions, trails, or manual emission.
2022-11-14Fix alpha hash by correcting typos and doing calculations in object spaceclayjohn
2022-11-14Merge pull request #68339 from clayjohn/RD-shadow-acneRémi Verschelde
Scale light shadow bias by soft_shadow_scale to reduce shadow acne
2022-11-14Merge pull request #65821 from raulsntos/xr_notificationRémi Verschelde
Remove redefinition of `notification` method in `XRInterfaceExtension`
2022-11-14Remove redefinition of `notification` method in `XRInterfaceExtension`Raul Santos
2022-11-14Remove redundant Variant-types initializationsMarkus Sauermann
2022-11-14Merge pull request #61884 from Calinou/alpha-hash-use-opaque-pipelineRémi Verschelde
Use opaque rendering pipeline for alpha hash materials
2022-11-13Implement is_animated and casts_shadowsclayjohn
This allows the renderer to correctly decide when to update shadow maps This PR also adds TIME to a few missing places
2022-11-13Merge pull request #68574 from clayjohn/RD-shadow-timeRémi Verschelde
Properly set TIME shader uniform when rendering shadows
2022-11-12Properly set TIME shader uniform when rendering shadowsclayjohn
2022-11-11Merge pull request #67746 from SonnyBonds/fix_cluster_shader_mvkRémi Verschelde
Fix cluster_render.glsl failing on some Macs
2022-11-11Merge pull request #67972 from and-rad/vector-field-consistencyRémi Verschelde
Fix inconsistency between vector field texture and world space directions
2022-11-11Merge pull request #68496 from clayjohn/RD-pointRémi Verschelde
Ensure user shader is used in depth pass when point size is used
2022-11-11Merge pull request #68511 from clayjohn/RD-mobile-skyRémi Verschelde
Enable mipmaps in cubemap roughness shader
2022-11-11Merge pull request #68186 from pkdawson/expose-texture-rdRémi Verschelde
Expose texture_get_rd_texture for scripts
2022-11-11Merge pull request #68235 from pkdawson/pr-expose-vertex-array-createRémi Verschelde
Expose RenderingDevice::vertex_array_create to scripting
2022-11-11Merge pull request #67374 from MrBlockers/fix-draw-primitiveRémi Verschelde
Fix draw_primitive ignoring texture argument
2022-11-11Merge pull request #68425 from clayjohn/RD-doubles-particlesRémi Verschelde
Fix GPUParticles not rendering in doubles build of the engine.
2022-11-10Enable mipmaps in cubemap roughness shaderclayjohn
2022-11-10Ensure user shader is used in depth pass when point size is usedclayjohn
2022-11-10Use raster versions of copy effects for 2D operations when using the mobile ↵clayjohn
renderer This PR implements a few basic copy operations in raster that weren't available before
2022-11-10expose XRInterface::get_transform_for_view and ↵avemort
XRInterface::get_projection_for_view to gdscript
2022-11-09Merge pull request #68413 from Chaosus/fix_instance_uniformsYuri Rubinsky
2022-11-09Some fixes for instance shader parametersYuri Rubinsky
2022-11-09Fix GPUParticles not rendering in doubles build of the engine.clayjohn
real_t was mistakenly used in uniform structs causing a mismatch between the GPU uniform and the CPU uniform
2022-11-09Merge pull request #68440 from clayjohn/redraw-TIMERémi Verschelde
Request redraw in OpenGL3 and mobile renderers when TIME used in shader
2022-11-08Request redraw in OpenGL3 and mobile renderers when TIME used in shaderclayjohn
2022-11-08Add support for OpenGL to OpenXRDavid Snopek
2022-11-08Remove duplicate project settings definitionskobewi
2022-11-07Merge pull request #68346 from Calinou/particles-rename-trail-length-propertyRémi Verschelde
Rename GPUParticles2D/3D's `trail_length_secs` to `trail_lifetime`
2022-11-07Rename GPUParticles2D/3D's `trail_length_secs` to `trail_lifetime`Hugo Locurcio
The property already has a "seconds" suffix in the inspector. The "lifetime" term makes it more obvious that the property is specified as time, not a distance in units. The property hint now allows manually entering values greater than 10 seconds. The internal rendering value's default now matches the particles nodes' default.
2022-11-07Surface AABBs are now set for mesh surfaces even in headless mode. Sponsored ↵Gábor Pál Korom
by Migeran (https://migeran.com).
2022-11-06Scale light shadow bias by soft_shadow_scale to reduce shadow acne on high ↵clayjohn
quality settings
2022-11-04Add call_deferred() method to Callablekobewi
2022-11-03Expose vertex_array_createPatrick Dawson
2022-11-03Collapse three seperate texture storage methods into ↵David Snopek
render_target_set_override()
2022-11-03Expose texture_get_rd_texturePatrick Dawson