diff options
| author | shuffle2 <godisgovernment@gmail.com> | 2014-09-01 02:57:59 -0700 |
|---|---|---|
| committer | shuffle2 <godisgovernment@gmail.com> | 2014-09-01 02:57:59 -0700 |
| commit | 5e9c910256c191d122c77a073818d4d95c977f31 (patch) | |
| tree | d03778b6e521ad15a4b133270a890af05787b4df /Source/Core/VideoCommon/VertexLoader_Position.cpp | |
| parent | f8e24de8336036c449b945701d11f9c4ec331889 (diff) | |
| parent | 494a60e41b2bd5bde4ffc664e446033132478295 (diff) | |
Merge pull request #928 from delroth/master
VertexLoader: Change VtxDesc to use u64 instead of u32
Diffstat (limited to 'Source/Core/VideoCommon/VertexLoader_Position.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VertexLoader_Position.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/VertexLoader_Position.cpp b/Source/Core/VideoCommon/VertexLoader_Position.cpp index 966ea023ef..2d40a26558 100644 --- a/Source/Core/VideoCommon/VertexLoader_Position.cpp +++ b/Source/Core/VideoCommon/VertexLoader_Position.cpp @@ -182,12 +182,12 @@ void VertexLoader_Position::Init() } -unsigned int VertexLoader_Position::GetSize(unsigned int _type, unsigned int _format, unsigned int _elements) +unsigned int VertexLoader_Position::GetSize(u64 _type, unsigned int _format, unsigned int _elements) { return tableReadPositionVertexSize[_type][_format][_elements]; } -TPipelineFunction VertexLoader_Position::GetFunction(unsigned int _type, unsigned int _format, unsigned int _elements) +TPipelineFunction VertexLoader_Position::GetFunction(u64 _type, unsigned int _format, unsigned int _elements) { return tableReadPosition[_type][_format][_elements]; } |
