summaryrefslogtreecommitdiffstats
path: root/servers/rendering/rendering_device.h
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Add Shader compile groups to RD Shader systemclayjohn2023-07-211-1/+2
| |/ | | | | | | | | | | | | | | This allows us to specify a subset of variants to compile at load time and conditionally other variants later. This works seamlessly with shader caching. Needed to ensure that users only pay the cost for variants they use
* / Add custom texture create functionBastiaan Olij2023-07-261-0/+2
|/
* Split raster barrier into vertex and fragment barrierBastiaan Olij2023-07-151-4/+7
|
* Expose RD::texture_native_handleBastiaan Olij2023-06-141-1/+1
|
* Document the InitialAction enum in RenderingDeviceHugo Locurcio2023-06-081-9/+9
| | | | | This also improves the documentation for the FinalAction enum, and fixes an incorrect comment in the RenderingDevice header.
* Merge pull request #74711 from BastiaanOlij/add_texture_native_handleRémi Verschelde2023-05-091-0/+1
|\ | | | | | | Provide access to internal graphics handles for textures
| * For GDExternal use, provides access to internal graphics handles for texturesBastiaan Olij2023-05-091-0/+1
| |
* | Save cluster render shader from being optimized out entirelyPedro J. Estébanez2023-05-081-0/+2
|/
* Merge pull request #76418 from reduz/method-bind-validated-callRémi Verschelde2023-05-081-0/+1
|\ | | | | | | Add ValidatedCall to MethodBind
| * Add ValidatedCall to MethodBindJuan Linietsky2023-04-301-0/+1
| | | | | | | | | | | | | | * This should optimize GDScript function calling _enormously_. * It also should simplify the GDScript VM considerably. NOTE: GDExtension calling performance has most likely been affected until going via ptrcall is fixed.
* | Fix unsupported sampler filter used for voxel GIPedro J. Estébanez2023-04-261-0/+1
|/
* Merge pull request #70663 from EpEpDragon/feature_buffer_get_data_size_optionRémi Verschelde2023-02-101-1/+1
|\ | | | | | | Add optional size parameter to the RenderDevice buffer_get_data method.
| * Added optional offset and size parameter to RenderDevice buffer_get_data methodEpEpDragon2023-01-061-1/+1
| |
* | Add layer slice support to render device and render buffersBastiaan Olij2023-02-031-1/+1
|/
* One Copyright Update to rule them allRémi Verschelde2023-01-051-29/+29
| | | | | | | | | | | | | | | | | | | | As many open source projects have started doing it, we're removing the current year from the copyright notice, so that we don't need to bump it every year. It seems like only the first year of publication is technically relevant for copyright notices, and even that seems to be something that many companies stopped listing altogether (in a version controlled codebase, the commits are a much better source of date of publication than a hardcoded copyright statement). We also now list Godot Engine contributors first as we're collectively the current maintainers of the project, and we clarify that the "exclusive" copyright of the co-founders covers the timespan before opensourcing (their further contributions are included as part of Godot Engine contributors). Also fixed "cf." Frenchism - it's meant as "refer to / see".
* Changed `STORAGE_BUFFER_USAGE_DISPATCH_INDIRECT` type to enum flagsYuri Rubinsky2022-12-151-3/+3
|
* Refactor SPIR-V reflection into a generic RenderingDevice featurePedro J. Estébanez2022-12-121-0/+37
|
* Changed `RD::PipelineDynamicStateFlags` type to enum flagsYuri Rubinsky2022-12-111-3/+3
|
* Changed `RenderingDevice::TextureUsageBits` type to enum flagsYuri Rubinsky2022-11-261-2/+2
|
* Merge pull request #68942 from Chaosus/barrier_mask_flagsRémi Verschelde2022-11-221-11/+12
|\ | | | | | | Expose `BarrierMask` as flags enum in `RenderingDevice`
| * Expose `BarrierMask` as flags enum in `RenderingDevice`Yuri Rubinsky2022-11-221-11/+12
| |
* | Merge pull request #68527 from pkdawson/vertex-array-offsetsRémi Verschelde2022-11-211-2/+2
|\ \ | |/ |/| | | Add `offsets` parameter to RenderingDevice::vertex_array_create
| * Add `offsets` parameter to RenderingDevice::vertex_array_createPatrick Dawson2022-11-111-2/+2
| |
* | Fix VRS issuesBastiaan Olij2022-11-171-0/+2
|/
* Merge pull request #64710 from MinusKube/window-size-crashClay John2022-10-271-0/+2
|\ | | | | Prevent windows from having a size greater than device limit
| * Prevent windows from having a size greater than device limitMinusKube2022-09-041-0/+2
| |
* | Rename remaining "*_enable" to "*_enabled"Micky2022-09-211-2/+2
|/ | | | | | | | | | | | | | | | | | Material.`proximity_fade_enable` -> `proximity_fade_enabled` Material.`set_proximity_fade` -> `set_proximity_fade_enabled` (Material.`is_proximity_fade_enabled` is unchanged) Area3D.`reverb_bus_enable` -> `reverb_bus_enabled` (`set_use_reverb_bus` & `is_using_reverb_bus` are unchanged) RDPipelineRasterizationState: `depth_bias_enable` -> `depth_bias_enabled` `set_depth_bias_enable` -> `set_depth_bias_enabled` `get_depth_bias_enable` -> `get_depth_bias_enabled` Bonus: Area3D.`set_reverb_bus` -> `set_reverb_bus_name` Area3D.`get_reverb_bus` -> `set_get_reverb_bus_name`
* Merge pull request #65170 from KoBeWi/your_argument_is_TypedArrayRémi Verschelde2022-09-021-2/+2
|\
| * Change Array arguments to TypedArraykobewi2022-09-011-2/+2
| |
* | Extracting render buffers and changing it to a more generic solutionBastiaan Olij2022-09-011-0/+26
|/
* Merge pull request #63003 from Geometror/msaa-2dRémi Verschelde2022-08-301-0/+1
|\
| * Implement MSAA for 2D [Vulkan only]Hendrik Brucker2022-08-131-0/+1
| |
* | Add font LCD sub-pixel anti-aliasing support.bruvzg2022-08-231-0/+1
|/
* Add a Framebuffer cacheJuan Linietsky2022-08-051-4/+7
| | | | | | | | | | Adds a FramebufferCache singletion that operates the same way as UniformSetCache. Allows creating framebuffers on the fly (and keep them cached if re-requested) such as: ```C++ RID fb = FramebufferCache::get_singleton()->get_cache(texture1,texture2); ```
* Adding Variable Rate Shading support to GodotBastiaan Olij2022-07-171-12/+16
| | | | | Improve GI renderer and add VRS support Implement render device has_feature and move subgroup settings to limit_get
* Add `get_video_adapter_api_version()` to RenderingServerHugo Locurcio2022-05-031-0/+1
| | | | | | This method can be used to get the graphics API version currently in use (such as Vulkan). It can be used by projects for troubleshooting or statistical purposes.
* Add color pass flags to Forward Clustered rendererjfons2022-04-011-0/+1
| | | | | | | | | | This commit removes a lot of enum values related to the color render pass in favor of a new flag-bases approach. This means instead of hard-coding all the possible option combinations into enums, we can write our logic by checking a bit-mask. The changes in rendering_device_vulkan.cpp add support for unused attachments. That means RenderingDeviceVulkan::framebuffer_create() can take null RIDs in the attachments vector, which will result in VK_ATTACHMENT_UNUSED entries in the render pass. This is used in this same PR to establish fixed locations for the color pass attachments (only color and separate specular so far, but TAA will add motion vectors as well). This way the attachment locations in the shader can stay the same regardless of which attachments are actually used. Right now all the combinations of flags are generated, but we will need to add a way to limit the amount of combinations in the future.
* Fix typos with codespellRémi Verschelde2022-03-311-1/+1
| | | | | | Using codespell 2.2-dev from current git. Fix a couple incorrect uses of gendered pronouns.
* Fix device limit exceeding for uniform buffernotSanil2022-03-161-1/+1
|
* Add a UniformSet cachereduz2022-03-061-8/+57
| | | | | | | * Changed syntax usage for RD::Uniform to create faster with a single RID * Converted render pass setup to use this in clustered renderer to test. This is the first step into creating a proper uniform set cache system to simplify large parts of the codebase.
* Implementing OpenXR driverBastiaan Olij2022-02-231-0/+1
|
* Merge pull request #54489 from briansemrau/texture-delete-updateRémi Verschelde2022-01-191-1/+1
|\
| * Fix materials not updating when texture replaced/deletedBrian Semrau2021-11-011-1/+1
| |
* | Remove support for PVRTC texture encoding and decodingHugo Locurcio2022-01-141-8/+0
| | | | | | | | | | | | | | On the only platform where PVRTC is supported (iOS), ETC2 generally supersedes PVRTC in every possible way. The increased memory usage is not really a problem thanks to modern iOS' devices processing power being higher than its Android counterparts.
* | Merge pull request #55790 from Calinou/renderingserver-add-device-type-getterRémi Verschelde2022-01-041-0/+13
|\ \ | | | | | | Add `RenderingServer.get_video_adapter_type()` method
| * | Add `RenderingServer.get_video_adapter_type()` methodHugo Locurcio2021-12-101-0/+13
| | | | | | | | | | | | | | | | | | | | | This can be used to distinguish between integrated, dedicated, virtual and software-emulated GPUs. This in turn can be used to automatically adjust graphics settings, or warn users about features that may run slowly on their hardware.
* | | Merge pull request #51206 from clayjohn/Vulkan-ASSGIRémi Verschelde2022-01-041-2/+2
|\ \ \
| * | | Added SSIL post processing effectclayjohn2021-11-061-2/+2
| | |/ | |/|
* | | Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
| |/ |/| | | | | Happy new year to the wonderful Godot community!
* | Implemented AMD's FSR as a computer shader for upscaling 3D scenesJe06jm2021-11-231-0/+1
|/