| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-07-22 | vk_update_descriptor: Properly initialize payload on the update descriptor queue | ReinUsesLisp | |
| 2021-07-22 | vk_pipeline_cache: Enable int8 and int16 types on Vulkan | ReinUsesLisp | |
| 2021-07-22 | vk_scheduler: Use locks instead of SPSC a queue | ReinUsesLisp | |
| This tries to fix a data race where we'd wait forever for the GPU. | |||
| 2021-07-22 | vk_query_cache: Wait before reading queries | ReinUsesLisp | |
| 2021-07-22 | vk_master_semaphore: Use fetch_add to increase master semaphore tick | ReinUsesLisp | |
| 2021-07-22 | Move SPIR-V emission functions to their own header | ReinUsesLisp | |
| 2021-07-22 | shader: Initial OpenGL implementation | ReinUsesLisp | |
| 2021-07-22 | spirv: Support OpenGL uniform buffers and change bindings | ReinUsesLisp | |
| 2021-07-22 | shader: Address feedback | FernandoS27 | |
| 2021-07-22 | shader: Implement VertexA stage | FernandoS27 | |
| 2021-07-22 | vk_graphics_pipeline: Fix texture buffer descriptors | ReinUsesLisp | |
| 2021-07-22 | vk_scheduler: Allow command submission on worker thread | ReinUsesLisp | |
| This changes how Scheduler::Flush works. It queues the current command buffer to be sent to the GPU but does not do it immediately. The Vulkan worker thread takes care of that. Users will have to use Scheduler::Flush + Scheduler::WaitWorker to get the previous behavior. Scheduler::Finish is unchanged. To avoid waiting on work never queued, Scheduler::Wait sends the current command buffer if that's what the caller wants to wait. | |||
| 2021-07-22 | vk_compute_pass: Fix -Wshadow warning | ReinUsesLisp | |
| 2021-07-22 | shader: Move pipeline cache logic to separate files | ReinUsesLisp | |
| Move code to separate files to be able to reuse it from OpenGL. This greatly simplifies the pipeline cache logic on Vulkan. Transform feedback state is not yet abstracted and it's still intrusively stored inside vk_pipeline_cache. It will be moved when needed on OpenGL. | |||
| 2021-07-22 | vulkan: Defer descriptor set work to the Vulkan thread | ReinUsesLisp | |
| Move descriptor lookup and update code to a separate thread. Delaying this removes work from the main GPU thread and allows creating descriptor layouts on another thread. This reduces a bit the workload of the main thread when new pipelines are encountered. | |||
| 2021-07-22 | vulkan: Rework descriptor allocation algorithm | ReinUsesLisp | |
| Create multiple descriptor pools on demand. There are some degrees of freedom what is considered a compatible pool to avoid wasting large pools on small descriptors. | |||
| 2021-07-22 | vk_graphics_pipeline: Generate specialized pipeline config functions and ↵ | ReinUsesLisp | |
| improve code | |||
| 2021-07-22 | shader: Accelerate pipeline transitions and use dirty flags for shaders | ReinUsesLisp | |
| 2021-07-22 | vk_compute_pipeline: Fix index comparison oversight on compute texture buffers | ReinUsesLisp | |
| 2021-07-22 | vk_graphics_pipeline: Guard against non-tessellation pipelines using patches | ReinUsesLisp | |
| 2021-07-22 | shader: Fix bugs and build issues on GCC | Rodrigo Locatti | |
| 2021-07-22 | shader: Fix render targets with null attachments | ReinUsesLisp | |
| 2021-07-22 | shader: Implement indexed textures | ReinUsesLisp | |
| 2021-07-22 | shader: Move microinstruction header to the value header | ReinUsesLisp | |
| 2021-07-22 | shader: Implement D3D samplers | ReinUsesLisp | |
| 2021-07-22 | shader: Implement SR_Y_DIRECTION | FernandoS27 | |
| 2021-07-22 | spirv: Implement ViewportMask with NV_viewport_array2 | ReinUsesLisp | |
| 2021-07-22 | shader: Implement tessellation shaders, polygon mode and invocation id | ReinUsesLisp | |
| 2021-07-22 | vk_pipeline_cache: Silence GCC warnings | lat9nq | |
| Silences `-Werror=missing-field-initializers` due to missing initializers. | |||
| 2021-07-22 | spirv: Implement image buffers | ReinUsesLisp | |
| 2021-07-22 | spirv: Implement alpha test | ameerj | |
| 2021-07-22 | shader: Implement transform feedbacks and define file format | ReinUsesLisp | |
| 2021-07-22 | shader: Implement early Z tests | ReinUsesLisp | |
| 2021-07-22 | shader: Implement geometry shaders | ReinUsesLisp | |
| 2021-07-22 | pipeline_helper: Simplify descriptor objects initialization | ReinUsesLisp | |
| 2021-07-22 | shader: Implement ATOM/S and RED | ameerj | |
| 2021-07-22 | nsight_aftermath_tracker: Report used shaders to Nsight Aftermath | ReinUsesLisp | |
| 2021-07-22 | spirv: Guard against typeless image reads on unsupported devices | ReinUsesLisp | |
| 2021-07-22 | vk_rasterizer: Request outside render pass execution context for compute | ReinUsesLisp | |
| 2021-07-22 | pipeline_helper: Add missing [[maybe_unused]] | ReinUsesLisp | |
| 2021-07-22 | shader: Implement SULD and SUST | ReinUsesLisp | |
| 2021-07-22 | shader: Address feedback + clang format | lat9nq | |
| 2021-07-22 | shader_recompiler,video_core: Cleanup some GCC and Clang errors | lat9nq | |
| Mostly fixing unused *, implicit conversion, braced scalar init, fpermissive, and some others. Some Clang errors likely remain in video_core, and std::ranges is still a pertinent issue in shader_recompiler shader_recompiler: cmake: Force bracket depth to 1024 on Clang Increases the maximum fold expression depth thread_worker: Include condition_variable Don't use list initializers in control flow Co-authored-by: ReinUsesLisp <reinuseslisp@airmail.cc> | |||
| 2021-07-22 | shader: Interact texture buffers with buffer cache | ReinUsesLisp | |
| 2021-07-22 | shader: Implement texture buffers | ReinUsesLisp | |
| 2021-07-22 | vk_pipeline_cache: Fix num of pipeline workers on weird platforms | ReinUsesLisp | |
| 2021-07-22 | shader: Fix ShadowCube declaration type, set number of pipeline threads ↵ | FernandoS27 | |
| based on hardware | |||
| 2021-07-22 | vk_compute_pass: Fix compute passes | ReinUsesLisp | |
| 2021-07-22 | shader: Remove atomic flags and use mutex + cond variable for pipelines | ReinUsesLisp | |
| 2021-07-22 | vk_pipeline_cache: Remove unnecesary scope in pipeline cache locking | ReinUsesLisp | |
