summaryrefslogtreecommitdiff
path: root/servers
AgeCommit message (Collapse)Author
2022-11-24Merge pull request #69037 from M-O-Marmalade/distortion-fixesRémi Verschelde
AudioEffectDistortion docs & inspector edits
2022-11-23Update remaining physics exclude parameters to use TypedArrayRicardo Buring
Also update the documentation to refer to the get_rid() method.
2022-11-23Merge pull request #69005 from akien-mga/shaderlang-sampler-uniforms-array-typeRémi Verschelde
Shader: Set proper resource type hints for sampler uniforms
2022-11-22AudioEffectDistorion docs & inspector editsM-O-Marmalade
Fixing a few typos in the AudioEffectDistortion docs, making a few things clearer, etc Also adding the decibel (dB) suffix to the pre/post gain properties in the inspector.
2022-11-22Merge pull request #69017 from raulsntos/physics3d-arrayRémi Verschelde
Change exclude property in `PhysicsRayQueryParameters3D` to TypedArray
2022-11-22Merge pull request #69019 from Sauermann/fix-framebuffer-hashparameterRémi Verschelde
Fix parameters for hash_murmur3_one_32
2022-11-22Merge pull request #68997 from ueshita/fix_verts_65536Rémi Verschelde
Fix some switching decisions for index format. (vertex length 65536)
2022-11-22Fix parameters for hash_murmur3_one_32Markus Sauermann
In multiple locations in the codebase hash_murmur3_one_32 is used for generating hash values. Whenever a sequence of multiple hash-calculation happens within a single function, the previous hash value is always used as input in the following hash-calculations. The only exception is get_cache_multipass, where currently the previous hash value is overridden without utilizing it. This patch corrects that.
2022-11-22Shader: Set proper resource type hints for sampler uniformsRémi Verschelde
Supersedes #64383.
2022-11-22Merge pull request #68942 from Chaosus/barrier_mask_flagsRémi Verschelde
Expose `BarrierMask` as flags enum in `RenderingDevice`
2022-11-22Expose `BarrierMask` as flags enum in `RenderingDevice`Yuri Rubinsky
2022-11-22Fix some switching decisions for index format.ueshita
2022-11-21Merge pull request #68527 from pkdawson/vertex-array-offsetsRémi Verschelde
Add `offsets` parameter to RenderingDevice::vertex_array_create
2022-11-21Code simplifications found by cppcheckMarkus Sauermann
They are based on: - Boolean arithmetic simplifications - setting variables that are not accessed - constant variables
2022-11-20Merge pull request #68884 from ↵Rémi Verschelde
dzil123/create_local_rendering_device_null_check_docs RenderingServer::create_local_rendering_device - Add null check and update docs
2022-11-20Merge pull request #68876 from dzil123/renderdummy_texture_replace_null_checkRémi Verschelde
RenderDummy::TextureStorage::texture_replace add missing null check
2022-11-20Merge pull request #68830 from Ayush-singla27/issuebranchRémi Verschelde
fixed incorrect mesh normals in shaders
2022-11-19RenderingServer::create_local_rendering_device null check and docsdzil123
Co-authored-by: Clay John <claynjohn@gmail.com>
2022-11-18Fix drawing of 2D skeletons in the RD renderer.clayjohn
Also clean up skeleton code in preparation for adding them to GLES3 Properly update Mesh2D AABBs when skeleton is updated
2022-11-18RenderDummy::TextureStorage::texture_replace add missing null checkdzil123
2022-11-19fixed incorrect mesh normals in shadersAyush Singla
2022-11-18Merge pull request #68710 from BastiaanOlij/fix_vrsRémi Verschelde
Fix VRS issues
2022-11-18Merge pull request #68808 from CherrySodaPop/global-instance-uniformYuri Rubinsky
2022-11-17Fix global uniforms parsed as instance uniformLily Garcia
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-17Fix VRS issuesBastiaan Olij
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