summaryrefslogtreecommitdiffstats
path: root/src/video_core/texture_cache/copy_params.h
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2019-05-07 16:56:45 +0200
committerReinUsesLisp <reinuseslisp@airmail.cc>2019-06-21 02:36:12 +0200
commit3d471e732d688c20aef73a506bdb6126002d3193 (patch)
treefc10f7750306fd8b17707473b8bc1cb1624d0cda /src/video_core/texture_cache/copy_params.h
parentAdd OGLTextureView (diff)
downloadyuzu-3d471e732d688c20aef73a506bdb6126002d3193.tar
yuzu-3d471e732d688c20aef73a506bdb6126002d3193.tar.gz
yuzu-3d471e732d688c20aef73a506bdb6126002d3193.tar.bz2
yuzu-3d471e732d688c20aef73a506bdb6126002d3193.tar.lz
yuzu-3d471e732d688c20aef73a506bdb6126002d3193.tar.xz
yuzu-3d471e732d688c20aef73a506bdb6126002d3193.tar.zst
yuzu-3d471e732d688c20aef73a506bdb6126002d3193.zip
Diffstat (limited to 'src/video_core/texture_cache/copy_params.h')
-rw-r--r--src/video_core/texture_cache/copy_params.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/video_core/texture_cache/copy_params.h b/src/video_core/texture_cache/copy_params.h
new file mode 100644
index 000000000..75c2b1f05
--- /dev/null
+++ b/src/video_core/texture_cache/copy_params.h
@@ -0,0 +1,25 @@
+// Copyright 2019 yuzu Emulator Project
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#pragma once
+
+#include "common/common_types.h"
+
+namespace VideoCommon {
+
+struct CopyParams {
+ u32 source_x;
+ u32 source_y;
+ u32 source_z;
+ u32 dest_x;
+ u32 dest_y;
+ u32 dest_z;
+ u32 source_level;
+ u32 dest_level;
+ u32 width;
+ u32 height;
+ u32 depth;
+};
+
+} // namespace VideoCommon