mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2026-04-26 00:05:58 +03:00
[PR #117] [MERGED] video_core: Add basic command list processing #1309
Labels
No labels
Bloodborne
bug
contributor wanted
documentation
enhancement
frontend
good first issue
help wanted
linux
pull-request
question
release
verification progress
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/shadPS4#1309
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/shadps4-emu/shadPS4/pull/117
Author: @raphaelthegreat
Created: 4/29/2024
Status: ✅ Merged
Merged: 4/29/2024
Merged by: @raphaelthegreat
Base:
main← Head:main📝 Commits (1)
6367770video_core: Add basic command list processing📊 Changes
18 files changed (+1562 additions, -165 deletions)
View changed files
📝
CMakeLists.txt(+8 -1)➕
LICENSES/BSD-3-Clause.txt(+11 -0)➕
src/common/bit_field.h(+166 -0)📝
src/common/native_clock.cpp(+2 -2)📝
src/core/libraries/gnmdriver/gnmdriver.cpp(+139 -17)📝
src/core/libraries/gnmdriver/gnmdriver.h(+5 -4)➕
src/video_core/amdgpu/liverpool.cpp(+95 -0)➕
src/video_core/amdgpu/liverpool.h(+647 -0)➕
src/video_core/amdgpu/pixel_format.cpp(+22 -0)➕
src/video_core/amdgpu/pixel_format.h(+64 -0)➕
src/video_core/amdgpu/pm4_cmds.h(+290 -0)➕
src/video_core/amdgpu/pm4_opcodes.h(+62 -0)➕
src/video_core/amdgpu/resource.h(+33 -0)➖
src/video_core/pixel_format.h(+0 -86)📝
src/video_core/texture_cache/image.cpp(+3 -3)📝
src/video_core/texture_cache/image.h(+0 -1)📝
src/video_core/texture_cache/image_view.cpp(+3 -34)📝
src/video_core/texture_cache/image_view.h(+12 -17)📄 Description
Implements a few PM4 commands and gnm submit call. This means that guest application will no longer be stuck waiting for a command buffer label. Right now commands don't do anything, actual functionality will be added in future PRs. Gnmdriver functions that write private packets have been implemented as close to real module disassembly as possible
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.