当前位置: 首页>>代码示例>>C++>>正文


C++ OcornutImguiContext类代码示例

本文整理汇总了C++中OcornutImguiContext的典型用法代码示例。如果您正苦于以下问题:C++ OcornutImguiContext类的具体用法?C++ OcornutImguiContext怎么用?C++ OcornutImguiContext使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了OcornutImguiContext类的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: renderDrawLists

void OcornutImguiContext::renderDrawLists(ImDrawData* _drawData)
{
	s_ctx.render(_drawData);
}
开发者ID:CallmeNezha,项目名称:bgfx,代码行数:4,代码来源:imgui.cpp

示例2: renderDrawLists

void OcornutImguiContext::renderDrawLists(ImDrawList** const _lists, int _count)
{
	s_ctx.render(_lists, _count);
}
开发者ID:EiffelOberon,项目名称:bgfx,代码行数:4,代码来源:ocornut_imgui.cpp

示例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);
}
开发者ID:CallmeNezha,项目名称:bgfx,代码行数:4,代码来源:imgui.cpp

示例4: imguiEndFrame

void imguiEndFrame()
{
	s_ctx.endFrame();
}
开发者ID:CallmeNezha,项目名称:bgfx,代码行数:4,代码来源:imgui.cpp

示例5: imguiCreate

void imguiCreate(float _fontSize, bx::AllocatorI* _allocator)
{
	s_ctx.create(_fontSize, _allocator);
}
开发者ID:CallmeNezha,项目名称:bgfx,代码行数:4,代码来源:imgui.cpp

示例6: imguiDestroy

void imguiDestroy()
{
	s_ctx.destroy();
}
开发者ID:CallmeNezha,项目名称:bgfx,代码行数:4,代码来源:imgui.cpp

示例7: IMGUI_endFrame

void IMGUI_endFrame()
{
	s_ctx.endFrame();
}
开发者ID:lxlpp123,项目名称:bgfx,代码行数:4,代码来源:ocornut_imgui.cpp

示例8: IMGUI_destroy

void IMGUI_destroy()
{
	s_ctx.destroy();
}
开发者ID:lxlpp123,项目名称:bgfx,代码行数:4,代码来源:ocornut_imgui.cpp

示例9: IMGUI_create

void IMGUI_create(const void* _data, uint32_t _size, float _fontSize, bx::AllocatorI* _allocator)
{
	s_ctx.create(_data, _size, _fontSize, _allocator);
}
开发者ID:lxlpp123,项目名称:bgfx,代码行数:4,代码来源:ocornut_imgui.cpp

示例10: IMGUI_create

void IMGUI_create(float _fontSize, bx::AllocatorI* _allocator)
{
	s_ctx.create(_fontSize, _allocator);
}
开发者ID:Enverex,项目名称:mame,代码行数:4,代码来源:ocornut_imgui.cpp

示例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);
}
开发者ID:EiffelOberon,项目名称:bgfx,代码行数:4,代码来源:ocornut_imgui.cpp


注:本文中的OcornutImguiContext类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。