summaryrefslogtreecommitdiffstats
path: root/scene/resources/material.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@f128f383e892865379cb8b14e7bcc9858efe2973Spartan3222024-11-271-7/+7
|\
| * Use Vector4 for texture mask in BaseMaterial to avoid converting to and from ↵clayjohn2024-11-261-7/+7
| | | | | | | | Plane
* | Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
| |
* | Merge commit godotengine@92e51fca7247c932f95a1662aefc28aca96e8de6Spartan3222024-10-141-6/+3
|\|
| * Fix implementation of property_can_revert() in various classeskobewi2024-10-041-6/+3
| |
* | Rebrand preambles to RedotDubhghlas McLaughlin2024-10-111-0/+2
|/ | | | | | | | | | | | | | | | | | | | | | Credits: Co-authored-by: Skogi <skogi.b@gmail.com> Co-authored-by: Spartan322 <Megacake1234@gmail.com> Co-authored-by: swashberry <swashdev@pm.me> Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: radenthefolf <radenthefolf@gmail.com> Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com> Co-authored-by: decryptedchaos <nixgod@gmail.com> Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com> Co-authored-by: Mister Puma <MisterPuma80@gmail.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: SingleError <isaaconeoneone@gmail.com> Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
* Implement asynchronous transfer queues, thread guards on RenderingDevice. ↵Dario2024-10-021-126/+203
| | | | | | | | | | | Add ubershaders and rework pipeline caches for Forward+ and Mobile. - Implements asynchronous transfer queues from PR #87590. - Adds ubershaders that can run with specialization constants specified as push constants. - Pipelines with specialization constants can compile in the background. - Added monitoring for pipeline compilations. - Materials and shaders can now be created asynchronously on background threads. - Meshes that are loaded on background threads can also compile pipelines as part of the loading process.
* Merge pull request #93449 from ↵Rémi Verschelde2024-10-011-6/+13
|\ | | | | | | | | | | Calinou/basematerial3d-refraction-use-depth-comparison Fix BaseMaterial3D refracting objects located in front of the material
| * Fix BaseMaterial3D refracting objects located in front of the materialHugo Locurcio2024-09-261-6/+13
| | | | | | | | | | | | | | | | | | | | | | | | Depth comparison is now used to prevent refraction from occurring if the pixel being refracted is located in front of the object. For pixels slightly behind the object, a `smoothstep()` curve is used to progressively increases refraction intensity as the distance between the object and the refraction increases. This avoids sudden discontinuities in the refraction. Co-authored-by: GeneralLegendary <generallegendary456@gmail.com>
* | GDExtension: Mark virtual function as `is_required` in `extension_api.json`David Snopek2024-09-111-2/+2
|/ | | | Co-authored-by: Jovan Gerodetti <jovan.gerodetti@titannano.de>
* Cleanup of raw `nullptr` checks with `Ref`A Thousand Ships2024-08-311-1/+1
| | | | Using `is_valid/null` over checks with `nullptr` or `ERR_FAIL_NULL` etc.
* Enable revert button for `ShaderMaterial::next_pass` and ↵Rakka Rage2024-08-221-0/+8
| | | | `ShaderMaterial::render_priority`.
* Use `PackedVector4Array` instead of float array for vec4 array uniformYuri Rubinsky2024-06-281-0/+15
|
* Allow BaseMaterial3D height/dither fade to work with Compatibility renderingHugo Locurcio2024-06-221-10/+8
| | | | | | Compatibility is based on OpenGL ES 3.0, so the height shader (including deep parallax) and distance fade dither modes work just fine with no adjustments required.
* Material: Fix marking as readyBlueCube33102024-06-131-1/+1
|
* Merge pull request #89470 from jsjtxietian/msdf-uvRémi Verschelde2024-05-291-8/+15
|\ | | | | | | Fix shader compilation error when enabling texture MSDF and UV1 Triplanar at the same time
| * Fix shader compilation error when enabling texture MSDF and UV1 Triplanar at ↵jsjtxietian2024-03-151-8/+15
| | | | | | | | the same time
* | Merge pull request #91909 from KoBeWi/have_fun_reviewing_thisRémi Verschelde2024-05-141-1/+0
|\ \ | | | | | | | | | Use Core/Scene stringnames consistently
| * | Use Core/Scene stringnames consistentlykobewi2024-05-131-1/+0
| | |
* | | Let materials' shaders update happen on loader threadsPedro J. Estébanez2024-05-061-20/+14
|/ /
* / Added premult alpha blending to 3D (spatial) shaders.QbieShay2024-05-011-1/+10
|/ | | | | Co-authored-by: jitspoe <jitspoe@yahoo.com> Co-authored-by: Clay John <claynjohn@gmail.com>
* Use raw string literals for BaseMaterial3D shader code generationHugo Locurcio2024-03-131-342/+647
| | | | | | | | | - Add range hints to all uniforms that match the BaseMaterial3D property hints, so that ranges in the inspector remain identical after converting to a shader. - Add comments to describe selected options within the shader. This makes it easier to remember what each block of code does. - Format code to follow the Godot shader language style guide.
* Set a minimum of 0.01 for proximity fade to avoid undefined behavior in shaderclayjohn2024-03-121-3/+3
|
* Optimise Object's `get_argument_options`Micky2024-02-291-2/+4
|
* Fix shadows for billboarded Sprite3D'sErik Johnson2024-02-131-3/+5
|
* Fix `ShaderMaterial::_property_get_revert` crash when given non-exist `p_name`jsjtxietian2024-01-291-1/+1
|
* Add const lvalue ref to container parametersMuller-Castro2024-01-051-1/+1
|
* Fix missing autocompletion for inheriting classesMicky2024-01-031-1/+1
|
* Fix typo in BaseMaterial3D conversion from 3.x SpatialMaterialHugo Locurcio2023-11-231-1/+1
|
* Fix several Material texture parameter updatesbitsawer2023-11-011-1/+1
|
* Fixing incorrect normal map when using triplanar world mapping and mesh rotationRaffaele Picca2023-10-231-9/+22
|
* Fix BaseMaterial3D update with certain material settingsbitsawer2023-10-111-0/+2
|
* Implement render mode fog_disabled and BaseMaterial3D setting Disable FogMilan Gruner2023-09-051-0/+5
|
* Initialize MSDF parameters in BaseMaterial3D with defaultdetomon2023-07-281-1/+4
|
* Unify and streamline connecting to Resource changeskobewi2023-07-171-2/+2
|
* Take eye offset into account for depth in StandardMaterial3DBastiaan Olij2023-07-061-1/+1
|
* Merge pull request #74937 from bitsawer/fix_uniform_storageRémi Verschelde2023-06-091-2/+26
|\ | | | | | | Fix shader uniform storage conversions and crash
| * Fix shader uniform storage conversions and crashbitsawer2023-05-291-2/+26
| |
* | Fix materials' shaders not updated if loaded on a non-main threadPedro J. Estébanez2023-05-311-2/+6
|/
* Improve `SelfList` and fix error in `BaseMaterial3D` when running doctoolRedworkDE2023-05-221-9/+7
|
* Avoid sync issues in materials with scheduled shader updatesPedro J. Estébanez2023-05-101-3/+19
|
* Merge pull request #75427 from Chaosus/shader_fix_groups_orderingClay John2023-05-051-15/+14
|\ | | | | Fix shader uniform groups to prevent it sorting in alphabet order
| * Fix shader uniform groups to prevent it sorting in alphabet orderYuri Rubinsky2023-03-281-15/+14
| |
* | Revert "Fix ShaderMaterial uniform type changes"bitsawer2023-04-281-20/+2
| | | | | | | | This reverts commit e55c6bfb7b850b8dc9fac565ab1ce56918ea4ec7.
* | Fix ShaderMaterial uniform type changesbitsawer2023-04-251-2/+20
| |
* | Add EXPOSURE built in to spatial shadersclayjohn2023-04-121-1/+1
|/ | | | This allows users to restore light values to pre-pre-exposure amounts
* Add warnings for unsupported features in mobile and gl_compatibility backendsclayjohn2023-02-261-10/+0
|
* Fix shader parameter assignJuan Linietsky2023-02-181-1/+9
| | | | | | -Make sure the remap is created properly if never assigned before. Fixes #72923. Supersedes #73066.
* make particle billboard take into account non-uniform scaleQbieShay2023-02-131-1/+4
|
* [Sprite3D/Label3D] Expose alpha antialiasing properties.bruvzg2023-01-311-2/+4
|