summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2019-06-25 23:42:50 +0200
committerFernando Sahmkow <fsahmkow27@gmail.com>2019-06-25 23:42:50 +0200
commitfb234560b060e528d66a77815330766e5aa88594 (patch)
tree745d177467f0e6f75d5a02c87538a826e2665761
parentgl_texture_cache: Corrections and fixes (diff)
downloadyuzu-fb234560b060e528d66a77815330766e5aa88594.tar
yuzu-fb234560b060e528d66a77815330766e5aa88594.tar.gz
yuzu-fb234560b060e528d66a77815330766e5aa88594.tar.bz2
yuzu-fb234560b060e528d66a77815330766e5aa88594.tar.lz
yuzu-fb234560b060e528d66a77815330766e5aa88594.tar.xz
yuzu-fb234560b060e528d66a77815330766e5aa88594.tar.zst
yuzu-fb234560b060e528d66a77815330766e5aa88594.zip
-rw-r--r--src/video_core/texture_cache/copy_params.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/video_core/texture_cache/copy_params.h b/src/video_core/texture_cache/copy_params.h
index 8cf010142..9c21a0649 100644
--- a/src/video_core/texture_cache/copy_params.h
+++ b/src/video_core/texture_cache/copy_params.h
@@ -9,13 +9,14 @@
namespace VideoCommon {
struct CopyParams {
- 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)
+ constexpr 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)
: source_x{source_x}, source_y{source_y}, source_z{source_z}, dest_x{dest_x},
dest_y{dest_y}, dest_z{dest_z}, source_level{source_level},
dest_level{dest_level}, width{width}, height{height}, depth{depth} {}
- CopyParams(u32 width, u32 height, u32 depth, u32 level)
+ constexpr CopyParams(u32 width, u32 height, u32 depth, u32 level)
: source_x{}, source_y{}, source_z{}, dest_x{}, dest_y{}, dest_z{}, source_level{level},
dest_level{level}, width{width}, height{height}, depth{depth} {}