DrawCommandWrapper.h 647 B

12345678910111213141516171819
  1. #pragma once
  2. #include "imguiWrapperTypes.h"
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. extern unsigned int iggDrawCommandIdxOffset(IggDrawCmd handle);
  7. extern void iggDrawCommandGetVertexOffset(IggDrawCmd handle, unsigned int *count);
  8. extern void iggDrawCommandGetElementCount(IggDrawCmd handle, unsigned int *count);
  9. extern void iggDrawCommandGetClipRect(IggDrawCmd handle, IggVec4 *rect);
  10. extern void iggDrawCommandGetTextureID(IggDrawCmd handle, IggTextureID *id);
  11. extern IggBool iggDrawCommandHasUserCallback(IggDrawCmd handle);
  12. extern void iggDrawCommandCallUserCallback(IggDrawCmd handle, IggDrawList listHandle);
  13. #ifdef __cplusplus
  14. }
  15. #endif