dolphin/Source/Core/VideoCommon/VertexLoaderX64.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
1.0 KiB
C
Raw Normal View History

2015-05-24 04:32:32 +00:00
// Copyright 2015 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2015-05-24 04:32:32 +00:00
#pragma once
#include "Common/CommonTypes.h"
2015-01-15 00:46:23 +00:00
#include "Common/x64Emitter.h"
#include "VideoCommon/VertexLoaderBase.h"
enum class VertexComponentFormat;
enum class ComponentFormat;
enum class ColorFormat;
2021-06-20 20:47:57 +00:00
enum class CPArray : u8;
2015-01-15 00:46:23 +00:00
class VertexLoaderX64 : public VertexLoaderBase, public Gen::X64CodeBlock
{
public:
VertexLoaderX64(const TVtxDesc& vtx_desc, const VAT& vtx_att);
protected:
int RunVertices(const u8* src, u8* dst, int count) override;
2015-01-15 00:46:23 +00:00
private:
u32 m_src_ofs = 0;
u32 m_dst_ofs = 0;
Gen::FixupBranch m_skip_vertex;
2021-06-20 20:47:57 +00:00
Gen::OpArg GetVertexAddr(CPArray array, VertexComponentFormat attribute);
void ReadVertex(Gen::OpArg data, VertexComponentFormat attribute, ComponentFormat format,
int count_in, int count_out, bool dequantize, u8 scaling_exponent,
AttributeFormat* native_format);
void ReadColor(Gen::OpArg data, VertexComponentFormat attribute, ColorFormat format);
2015-01-15 00:46:23 +00:00
void GenerateVertexLoader();
};