mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-02 05:43:40 +01:00
restructure
This commit is contained in:
parent
3381ac1c7d
commit
b53a97408b
263 changed files with 2221 additions and 1191 deletions
|
|
@ -10,7 +10,7 @@ public unsafe partial struct ImFont
|
|||
}
|
||||
|
||||
public readonly void RenderText(
|
||||
ImDrawListPtr drawList, float size, Vector2 pos, uint col, Vector4 clipRect, Utf8Buffer text,
|
||||
ImDrawListPtr drawList, float size, Vector2 pos, uint col, Vector4 clipRect, ImU8String text,
|
||||
float wrapWidth = 0.0f, bool cpuFineClip = false)
|
||||
{
|
||||
fixed (ImFont* thisPtr =
|
||||
|
|
@ -20,11 +20,11 @@ public unsafe partial struct ImFont
|
|||
|
||||
public partial struct ImFontPtr
|
||||
{
|
||||
public readonly int CalcWordWrapPositionA(float scale, Utf8Buffer text, float wrapWidth) =>
|
||||
public readonly int CalcWordWrapPositionA(float scale, ImU8String text, float wrapWidth) =>
|
||||
ImGui.CalcWordWrapPositionA(this, scale, text, wrapWidth);
|
||||
|
||||
public readonly void RenderText(
|
||||
ImDrawListPtr drawList, float size, Vector2 pos, uint col, Vector4 clipRect, Utf8Buffer text,
|
||||
ImDrawListPtr drawList, float size, Vector2 pos, uint col, Vector4 clipRect, ImU8String text,
|
||||
float wrapWidth = 0.0f, bool cpuFineClip = false) => ImGui.RenderText(
|
||||
this,
|
||||
drawList,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue