2015-05-24 06:55:12 +02:00
|
|
|
// Copyright 2015 Dolphin Emulator Project
|
2021-07-05 03:22:19 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2015-02-12 18:52:07 -06:00
|
|
|
|
|
|
|
#pragma once
|
2016-01-17 16:54:31 -05:00
|
|
|
|
2022-07-15 13:22:58 -07:00
|
|
|
#include <utility>
|
|
|
|
|
2015-02-12 18:52:07 -06:00
|
|
|
#include "Common/Arm64Emitter.h"
|
2016-01-17 16:54:31 -05:00
|
|
|
#include "Common/CommonTypes.h"
|
2015-02-12 18:52:07 -06:00
|
|
|
#include "VideoCommon/VertexLoaderBase.h"
|
|
|
|
|
2021-02-08 15:22:10 -08:00
|
|
|
enum class VertexComponentFormat;
|
|
|
|
enum class ComponentFormat;
|
|
|
|
enum class ColorFormat;
|
2021-06-20 13:47:57 -07:00
|
|
|
enum class CPArray : u8;
|
2016-01-31 14:51:55 -05:00
|
|
|
|
2015-02-12 18:52:07 -06:00
|
|
|
class VertexLoaderARM64 : public VertexLoaderBase, public Arm64Gen::ARM64CodeBlock
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
VertexLoaderARM64(const TVtxDesc& vtx_desc, const VAT& vtx_att);
|
|
|
|
|
|
|
|
protected:
|
2022-11-22 16:54:05 -08:00
|
|
|
int RunVertices(const u8* src, u8* dst, int count) override;
|
2015-02-12 18:52:07 -06:00
|
|
|
|
|
|
|
private:
|
|
|
|
u32 m_src_ofs = 0;
|
|
|
|
u32 m_dst_ofs = 0;
|
|
|
|
Arm64Gen::FixupBranch m_skip_vertex;
|
|
|
|
Arm64Gen::ARM64FloatEmitter m_float_emit;
|
2022-07-15 13:22:58 -07:00
|
|
|
std::pair<Arm64Gen::ARM64Reg, u32> GetVertexAddr(CPArray array, VertexComponentFormat attribute);
|
2022-07-04 19:20:15 -07:00
|
|
|
void ReadVertex(VertexComponentFormat attribute, ComponentFormat format, int count_in,
|
|
|
|
int count_out, bool dequantize, u8 scaling_exponent,
|
|
|
|
AttributeFormat* native_format, Arm64Gen::ARM64Reg reg, u32 offset);
|
2022-07-15 13:22:58 -07:00
|
|
|
void ReadColor(VertexComponentFormat attribute, ColorFormat format, Arm64Gen::ARM64Reg reg,
|
|
|
|
u32 offset);
|
2015-02-12 18:52:07 -06:00
|
|
|
void GenerateVertexLoader();
|
|
|
|
};
|