diff options
| author | 2015-06-07 22:24:03 -0300 | |
|---|---|---|
| committer | 2015-06-21 20:58:55 -0300 | |
| commit | 3e6663da433d98a0bf4db1256ea3ccdefd404a0c (patch) | |
| tree | 88dc92d21b40edc99edf6c818a9c304b7f75cb1b /src/core/hw/y2r.h | |
| parent | Y2R: Re-organize how params are stored. Support SetConversionParams (diff) | |
| download | yuzu-3e6663da433d98a0bf4db1256ea3ccdefd404a0c.tar.gz yuzu-3e6663da433d98a0bf4db1256ea3ccdefd404a0c.tar.xz yuzu-3e6663da433d98a0bf4db1256ea3ccdefd404a0c.zip | |
Y2R: Rework conversion process, enabling support for all formats
Diffstat (limited to 'src/core/hw/y2r.h')
| -rw-r--r-- | src/core/hw/y2r.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/core/hw/y2r.h b/src/core/hw/y2r.h new file mode 100644 index 000000000..729e1eee3 --- /dev/null +++ b/src/core/hw/y2r.h | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | // Copyright 2015 Citra Emulator Project | ||
| 2 | // Licensed under GPLv2 or any later version | ||
| 3 | // Refer to the license.txt file included. | ||
| 4 | |||
| 5 | namespace Y2R_U { | ||
| 6 | struct ConversionConfiguration; | ||
| 7 | } | ||
| 8 | |||
| 9 | namespace HW { | ||
| 10 | namespace Y2R { | ||
| 11 | |||
| 12 | void PerformConversion(Y2R_U::ConversionConfiguration& cvt); | ||
| 13 | |||
| 14 | } | ||
| 15 | } | ||