mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
VertexLoader: Inline GetSize
This commit is contained in:
@ -4,21 +4,60 @@
|
||||
#pragma once
|
||||
|
||||
#include "Common/CommonTypes.h"
|
||||
#include "VideoCommon/VertexLoader.h"
|
||||
#include "Common/EnumMap.h"
|
||||
#include "Common/Inline.h"
|
||||
|
||||
enum class VertexComponentFormat;
|
||||
enum class ComponentFormat;
|
||||
enum class TexComponentCount;
|
||||
#include "VideoCommon/CPMemory.h"
|
||||
#include "VideoCommon/VertexLoader.h"
|
||||
|
||||
class VertexLoader_TextCoord
|
||||
{
|
||||
public:
|
||||
static u32 GetSize(VertexComponentFormat type, ComponentFormat format,
|
||||
TexComponentCount elements);
|
||||
static DOLPHIN_FORCE_INLINE u32 GetSize(VertexComponentFormat type, ComponentFormat format,
|
||||
TexComponentCount elements)
|
||||
{
|
||||
return s_table_size[type][format][elements];
|
||||
}
|
||||
|
||||
static TPipelineFunction GetFunction(VertexComponentFormat type, ComponentFormat format,
|
||||
TexComponentCount elements);
|
||||
|
||||
// It is important to synchronize tcIndex.
|
||||
static TPipelineFunction GetDummyFunction();
|
||||
|
||||
private:
|
||||
template <typename T, auto last_member>
|
||||
using EnumMap = typename Common::EnumMap<T, last_member>;
|
||||
|
||||
using SizeTable = EnumMap<EnumMap<EnumMap<u32, TexComponentCount::ST>, ComponentFormat::Float>,
|
||||
VertexComponentFormat::Index16>;
|
||||
|
||||
static constexpr SizeTable s_table_size = []() consteval
|
||||
{
|
||||
SizeTable table{};
|
||||
|
||||
using VCF = VertexComponentFormat;
|
||||
using FMT = ComponentFormat;
|
||||
|
||||
table[VCF::Direct][FMT::UByte] = {1, 2};
|
||||
table[VCF::Direct][FMT::Byte] = {1, 2};
|
||||
table[VCF::Direct][FMT::UShort] = {2, 4};
|
||||
table[VCF::Direct][FMT::Short] = {2, 4};
|
||||
table[VCF::Direct][FMT::Float] = {4, 8};
|
||||
|
||||
table[VCF::Index8][FMT::UByte] = {1, 1};
|
||||
table[VCF::Index8][FMT::Byte] = {1, 1};
|
||||
table[VCF::Index8][FMT::UShort] = {1, 1};
|
||||
table[VCF::Index8][FMT::Short] = {1, 1};
|
||||
table[VCF::Index8][FMT::Float] = {1, 1};
|
||||
|
||||
table[VCF::Index16][FMT::UByte] = {2, 2};
|
||||
table[VCF::Index16][FMT::Byte] = {2, 2};
|
||||
table[VCF::Index16][FMT::UShort] = {2, 2};
|
||||
table[VCF::Index16][FMT::Short] = {2, 2};
|
||||
table[VCF::Index16][FMT::Float] = {2, 2};
|
||||
|
||||
return table;
|
||||
}
|
||||
();
|
||||
};
|
||||
|
Reference in New Issue
Block a user