mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-01 19:00:56 +01:00
20 lines
429 B
C++
20 lines
429 B
C++
// Copyright 2013 Dolphin Emulator Project
|
|
// Licensed under GPLv2
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
class VertexLoader_Position {
|
|
public:
|
|
|
|
// Init
|
|
static void Init();
|
|
|
|
// 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);
|
|
};
|
|
|