2017-04-17 10:01:45 +03:00
|
|
|
// Copyright 2017 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include "common/common_types.h"
|
|
|
|
#include "common/vector_math.h"
|
|
|
|
#include "video_core/pica_state.h"
|
|
|
|
|
2019-02-19 03:09:57 -05:00
|
|
|
namespace Pica::Rasterizer {
|
2017-04-17 10:01:45 +03:00
|
|
|
|
|
|
|
/// Generates procedural texture color for the given coordinates
|
2019-02-26 22:38:34 -05:00
|
|
|
Common::Vec4<u8> ProcTex(float u, float v, TexturingRegs regs, State::ProcTex state);
|
2017-04-17 10:01:45 +03:00
|
|
|
|
2019-02-19 03:09:57 -05:00
|
|
|
} // namespace Pica::Rasterizer
|