Skip to content

Commit

Permalink
Added ImDrawChannel struct
Browse files Browse the repository at this point in the history
  • Loading branch information
Aidan63 committed Jan 17, 2018
1 parent c4379bc commit 55b3f93
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions imgui/draw/ImDrawChannel.hx
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package imgui.draw;

import imgui.draw.ImDrawCmd;
import imgui.draw.ImDrawIdx;

@:include('linc_imgui.h')
@:native('ImDrawChannel')
@:unreflective
@:structAccess
extern class ImDrawChannel
{
@:native('CmdBuffer') public var cmdBuffer : ImDrawCmdVector;
@:native('IdxBuffer') public var idxBuffer : ImDrawIdxVector;
}

0 comments on commit 55b3f93

Please sign in to comment.