2013-04-18 06:09:55 +03:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2008-12-08 06:46:09 +02:00
|
|
|
|
|
|
|
#ifndef VERTEXLOADER_POSITION_H
|
|
|
|
#define VERTEXLOADER_POSITION_H
|
|
|
|
|
2010-04-09 18:13:42 +03:00
|
|
|
class VertexLoader_Position {
|
|
|
|
public:
|
|
|
|
|
2013-03-20 03:51:12 +02:00
|
|
|
// Init
|
|
|
|
static void Init(void);
|
2010-04-09 18:13:42 +03:00
|
|
|
|
2013-03-20 03:51:12 +02:00
|
|
|
// GetSize
|
|
|
|
static unsigned int GetSize(unsigned int _type, unsigned int _format, unsigned int _elements);
|
2010-04-09 18:13:42 +03:00
|
|
|
|
2013-03-20 03:51:12 +02:00
|
|
|
// GetFunction
|
|
|
|
static TPipelineFunction GetFunction(unsigned int _type, unsigned int _format, unsigned int _elements);
|
2010-04-09 18:13:42 +03:00
|
|
|
};
|
2008-12-08 06:46:09 +02:00
|
|
|
|
|
|
|
#endif
|