Files
dolphin/Source/Core/VideoCommon/VertexLoader_Position.h
T

20 lines
433 B
C++
Raw Normal View History

// Copyright 2013 Dolphin Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.
2008-12-08 04:46:09 +00:00
#pragma once
2008-12-08 04:46:09 +00:00
class VertexLoader_Position {
public:
2008-12-08 04:46:09 +00:00
// Init
static void Init(void);
2008-12-08 04:46:09 +00:00
// GetSize
static unsigned int GetSize(unsigned int _type, unsigned int _format, unsigned int _elements);
// GetFunction
static TPipelineFunction GetFunction(unsigned int _type, unsigned int _format, unsigned int _elements);
};
2008-12-08 04:46:09 +00:00