diff options
| author | 2018-01-11 20:07:44 -0700 | |
|---|---|---|
| committer | 2018-01-12 19:11:03 -0700 | |
| commit | 1d28b2e142f845773e2b90e267d9632e196a99b9 (patch) | |
| tree | 027a3586a0fc927731afb3711c328c6dafc8551f /src/video_core/swrasterizer/texturing.h | |
| parent | Massive removal of unused modules (diff) | |
| download | yuzu-1d28b2e142f845773e2b90e267d9632e196a99b9.tar.gz yuzu-1d28b2e142f845773e2b90e267d9632e196a99b9.tar.xz yuzu-1d28b2e142f845773e2b90e267d9632e196a99b9.zip | |
Remove references to PICA and rasterizers in video_core
Diffstat (limited to 'src/video_core/swrasterizer/texturing.h')
| -rw-r--r-- | src/video_core/swrasterizer/texturing.h | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/src/video_core/swrasterizer/texturing.h b/src/video_core/swrasterizer/texturing.h deleted file mode 100644 index 24f74a5a3..000000000 --- a/src/video_core/swrasterizer/texturing.h +++ /dev/null | |||
| @@ -1,28 +0,0 @@ | |||
| 1 | // Copyright 2017 Citra Emulator Project | ||
| 2 | // Licensed under GPLv2 or any later version | ||
| 3 | // Refer to the license.txt file included. | ||
| 4 | |||
| 5 | #pragma once | ||
| 6 | |||
| 7 | #include "common/common_types.h" | ||
| 8 | #include "common/vector_math.h" | ||
| 9 | #include "video_core/regs_texturing.h" | ||
| 10 | |||
| 11 | namespace Pica { | ||
| 12 | namespace Rasterizer { | ||
| 13 | |||
| 14 | int GetWrappedTexCoord(TexturingRegs::TextureConfig::WrapMode mode, int val, unsigned size); | ||
| 15 | |||
| 16 | Math::Vec3<u8> GetColorModifier(TexturingRegs::TevStageConfig::ColorModifier factor, | ||
| 17 | const Math::Vec4<u8>& values); | ||
| 18 | |||
| 19 | u8 GetAlphaModifier(TexturingRegs::TevStageConfig::AlphaModifier factor, | ||
| 20 | const Math::Vec4<u8>& values); | ||
| 21 | |||
| 22 | Math::Vec3<u8> ColorCombine(TexturingRegs::TevStageConfig::Operation op, | ||
| 23 | const Math::Vec3<u8> input[3]); | ||
| 24 | |||
| 25 | u8 AlphaCombine(TexturingRegs::TevStageConfig::Operation op, const std::array<u8, 3>& input); | ||
| 26 | |||
| 27 | } // namespace Rasterizer | ||
| 28 | } // namespace Pica | ||