summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvflinger
diff options
context:
space:
mode:
authorFernando S <fsahmkow27@gmail.com>2021-09-11 22:35:25 +0200
committerGitHub <noreply@github.com>2021-09-11 22:35:25 +0200
commit55854c807d457c569d40cb0cd9b859aa0b41beae (patch)
treef488bbe0787f03dcc8fce285f270df5d1b76e40b /src/core/hle/service/nvflinger
parentMerge pull request #6962 from vonchenplus/spirv_support_legacy_attribute (diff)
parentnvflinger: Use external surface format for framebuffer creation (diff)
downloadyuzu-55854c807d457c569d40cb0cd9b859aa0b41beae.tar
yuzu-55854c807d457c569d40cb0cd9b859aa0b41beae.tar.gz
yuzu-55854c807d457c569d40cb0cd9b859aa0b41beae.tar.bz2
yuzu-55854c807d457c569d40cb0cd9b859aa0b41beae.tar.lz
yuzu-55854c807d457c569d40cb0cd9b859aa0b41beae.tar.xz
yuzu-55854c807d457c569d40cb0cd9b859aa0b41beae.tar.zst
yuzu-55854c807d457c569d40cb0cd9b859aa0b41beae.zip
Diffstat (limited to 'src/core/hle/service/nvflinger')
-rw-r--r--src/core/hle/service/nvflinger/buffer_queue.h4
-rw-r--r--src/core/hle/service/nvflinger/nvflinger.cpp2
2 files changed, 4 insertions, 2 deletions
diff --git a/src/core/hle/service/nvflinger/buffer_queue.h b/src/core/hle/service/nvflinger/buffer_queue.h
index 759247eb0..78de3f354 100644
--- a/src/core/hle/service/nvflinger/buffer_queue.h
+++ b/src/core/hle/service/nvflinger/buffer_queue.h
@@ -42,7 +42,9 @@ struct IGBPBuffer {
u32_le index;
INSERT_PADDING_WORDS(3);
u32_le gpu_buffer_id;
- INSERT_PADDING_WORDS(17);
+ INSERT_PADDING_WORDS(6);
+ u32_le external_format;
+ INSERT_PADDING_WORDS(10);
u32_le nvmap_handle;
u32_le offset;
INSERT_PADDING_WORDS(60);
diff --git a/src/core/hle/service/nvflinger/nvflinger.cpp b/src/core/hle/service/nvflinger/nvflinger.cpp
index 00bff8caf..3ead813b0 100644
--- a/src/core/hle/service/nvflinger/nvflinger.cpp
+++ b/src/core/hle/service/nvflinger/nvflinger.cpp
@@ -298,7 +298,7 @@ void NVFlinger::Compose() {
auto nvdisp = nvdrv->GetDevice<Nvidia::Devices::nvdisp_disp0>("/dev/nvdisp_disp0");
ASSERT(nvdisp);
- nvdisp->flip(igbp_buffer.gpu_buffer_id, igbp_buffer.offset, igbp_buffer.format,
+ nvdisp->flip(igbp_buffer.gpu_buffer_id, igbp_buffer.offset, igbp_buffer.external_format,
igbp_buffer.width, igbp_buffer.height, igbp_buffer.stride,
buffer->get().transform, buffer->get().crop_rect);