Skip to content

Commit

Permalink
Made ImDrawData's properties lower case
Browse files Browse the repository at this point in the history
  • Loading branch information
Aidan63 committed Jan 16, 2018
1 parent 009ce1e commit 3b78e7e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions imgui/draw/ImDrawData.hx
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ import imgui.util.ImVec2;
@:unreflective
extern class ImDrawData
{
public var Valid : Bool;
public var CmdLists : RawPointer<RawPointer<ImDrawList>>;
public var CmdListsCount : Int;
public var TotalVtxCount : Int;
public var TotalIdxCount : Int;
@:native('Valid') public var valid : Bool;
@:native('CmdLists') public var cmdLists : RawPointer<RawPointer<ImDrawList>>;
@:native('CmdListsCount') public var cmdListsCount : Int;
@:native('TotalVtxCount') public var totalVtxCount : Int;
@:native('TotalIdxCount') public var totalIdxCount : Int;

@:native('ImDrawData') static function create() : Pointer<ImDrawData>;
@:native('ImGui::linc::GetDrawList') static function getDrawList(_data : Pointer<ImDrawData>, _index : Int) : Pointer<ImDrawList>;
Expand Down

0 comments on commit 3b78e7e

Please sign in to comment.