VertexLoader_TextCoord.h 569 B

1234567891011121314151617181920212223242526
  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_TextCoord
  7. {
  8. public:
  9. // Init
  10. static void Init();
  11. // GetSize
  12. static unsigned int GetSize(u64 _type, unsigned int _format, unsigned int _elements);
  13. // GetFunction
  14. static TPipelineFunction GetFunction(u64 _type, unsigned int _format, unsigned int _elements);
  15. // GetDummyFunction
  16. // It is important to synchronize tcIndex.
  17. static TPipelineFunction GetDummyFunction();
  18. };