本文整理汇总了C++中OcornutImguiContext类的典型用法代码示例。如果您正苦于以下问题:C++ OcornutImguiContext类的具体用法?C++ OcornutImguiContext怎么用?C++ OcornutImguiContext使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了OcornutImguiContext类的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: renderDrawLists
void OcornutImguiContext::renderDrawLists(ImDrawData* _drawData)
{
s_ctx.render(_drawData);
}
示例2: renderDrawLists
void OcornutImguiContext::renderDrawLists(ImDrawList** const _lists, int _count)
{
s_ctx.render(_lists, _count);
}
示例3: imguiBeginFrame
void imguiBeginFrame(int32_t _mx, int32_t _my, uint8_t _button, int32_t _scroll, uint16_t _width, uint16_t _height, char _inputChar, uint8_t _viewId)
{
s_ctx.beginFrame(_mx, _my, _button, _scroll, _width, _height, _inputChar, _viewId);
}
示例4: imguiEndFrame
void imguiEndFrame()
{
s_ctx.endFrame();
}
示例5: imguiCreate
void imguiCreate(float _fontSize, bx::AllocatorI* _allocator)
{
s_ctx.create(_fontSize, _allocator);
}
示例6: imguiDestroy
void imguiDestroy()
{
s_ctx.destroy();
}
示例7: IMGUI_endFrame
void IMGUI_endFrame()
{
s_ctx.endFrame();
}
示例8: IMGUI_destroy
void IMGUI_destroy()
{
s_ctx.destroy();
}
示例9: IMGUI_create
void IMGUI_create(const void* _data, uint32_t _size, float _fontSize, bx::AllocatorI* _allocator)
{
s_ctx.create(_data, _size, _fontSize, _allocator);
}
示例10: IMGUI_create
void IMGUI_create(float _fontSize, bx::AllocatorI* _allocator)
{
s_ctx.create(_fontSize, _allocator);
}
示例11: IMGUI_beginFrame
void IMGUI_beginFrame(int32_t _mx, int32_t _my, uint8_t _button, int _width, int _height, char _inputChar, uint8_t _viewId)
{
s_ctx.beginFrame(_mx, _my, _button, _width, _height, _inputChar, _viewId);
}