diff options
Diffstat (limited to 'src/video_core/swrasterizer/lighting.h')
| -rw-r--r-- | src/video_core/swrasterizer/lighting.h | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/src/video_core/swrasterizer/lighting.h b/src/video_core/swrasterizer/lighting.h deleted file mode 100644 index d807a3d94..000000000 --- a/src/video_core/swrasterizer/lighting.h +++ /dev/null | |||
| @@ -1,19 +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 <tuple> | ||
| 8 | #include "common/quaternion.h" | ||
| 9 | #include "common/vector_math.h" | ||
| 10 | #include "video_core/pica_state.h" | ||
| 11 | |||
| 12 | namespace Pica { | ||
| 13 | |||
| 14 | std::tuple<Math::Vec4<u8>, Math::Vec4<u8>> ComputeFragmentsColors( | ||
| 15 | const Pica::LightingRegs& lighting, const Pica::State::Lighting& lighting_state, | ||
| 16 | const Math::Quaternion<float>& normquat, const Math::Vec3<float>& view, | ||
| 17 | const Math::Vec4<u8> (&texture_color)[4]); | ||
| 18 | |||
| 19 | } // namespace Pica | ||