// Copyright 2017 Citra Emulator Project // Licensed under GPLv2 or any later version // Refer to the license.txt file included. #pragma once #include #include #include "common/quaternion.h" #include "common/vector_math.h" #include "video_core/pica/pica_core.h" namespace SwRenderer { std::pair, Common::Vec4> ComputeFragmentsColors( const Pica::LightingRegs& lighting, const Pica::PicaCore::Lighting& lighting_state, const Common::Quaternion& normquat, const Common::Vec3f& view, std::span, 4> texture_color); } // namespace SwRenderer