summaryrefslogtreecommitdiffstats
path: root/src/video_core/texture_cache/copy_params.h
blob: 75c2b1f0549b6c984a86bc25c908d120e777fe2c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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