Skip to content

Commit

Permalink
codegen: add missing arg type for ImColor
Browse files Browse the repository at this point in the history
  • Loading branch information
gucio321 committed Nov 8, 2023
1 parent 7937ecb commit 4601e10
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions cmd/codegen/arguments_wrapper.go
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ func getArgWrapper(
"const ImVec4*": wrappablePtrW("*Vec4", "C.ImVec4"),
"ImVec4": wrappableW("Vec4", "C.ImVec4"),
"ImVec4*": wrappablePtrW("*Vec4", "C.ImVec4"),
"ImColor": wrappableW("Color", "C.ImColor"),
"ImColor*": wrappablePtrW("*Color", "C.ImColor"),
"ImRect": wrappableW("Rect", "C.ImRect"),
"const ImRect": wrappableW("Rect", "C.ImRect"),
Expand Down

0 comments on commit 4601e10

Please sign in to comment.