VertexLoader_Position.h 457 B

12345678910111213141516171819202122
  1. // Copyright 2008 Dolphin Emulator Project
  2. // Licensed under GPLv2+
  3. // Refer to the license.txt file included.
  4. #pragma once
  5. #include "VideoCommon/NativeVertexFormat.h"
  6. class VertexLoader_Position {
  7. public:
  8. // Init
  9. static void Init();
  10. // GetSize
  11. static unsigned int GetSize(u64 _type, unsigned int _format, unsigned int _elements);
  12. // GetFunction
  13. static TPipelineFunction GetFunction(u64 _type, unsigned int _format, unsigned int _elements);
  14. };