mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-31 21:03:43 +01:00
restructure
This commit is contained in:
parent
3381ac1c7d
commit
b53a97408b
263 changed files with 2221 additions and 1191 deletions
|
|
@ -4,14 +4,14 @@ namespace Dalamud.Bindings.ImGui;
|
|||
|
||||
public unsafe partial struct ImDrawList
|
||||
{
|
||||
public void AddText(Vector2 pos, uint col, Utf8Buffer text)
|
||||
public void AddText(Vector2 pos, uint col, ImU8String text)
|
||||
{
|
||||
fixed (ImDrawList* thisPtr = &this)
|
||||
ImGui.AddText(thisPtr, pos, col, text);
|
||||
}
|
||||
|
||||
public void AddText(
|
||||
ImFontPtr font, float fontSize, Vector2 pos, uint col, Utf8Buffer text, float wrapWidth,
|
||||
ImFontPtr font, float fontSize, Vector2 pos, uint col, ImU8String text, float wrapWidth,
|
||||
scoped in Vector4 cpuFineClipRect)
|
||||
{
|
||||
fixed (ImDrawList* thisPtr = &this)
|
||||
|
|
@ -19,7 +19,7 @@ public unsafe partial struct ImDrawList
|
|||
}
|
||||
|
||||
public void AddText(
|
||||
ImFontPtr font, float fontSize, Vector2 pos, uint col, Utf8Buffer text, float wrapWidth = 0f)
|
||||
ImFontPtr font, float fontSize, Vector2 pos, uint col, ImU8String text, float wrapWidth = 0f)
|
||||
{
|
||||
fixed (ImDrawList* thisPtr = &this)
|
||||
ImGui.AddText(thisPtr, font, fontSize, pos, col, text, wrapWidth);
|
||||
|
|
@ -28,10 +28,10 @@ public unsafe partial struct ImDrawList
|
|||
|
||||
public partial struct ImDrawListPtr
|
||||
{
|
||||
public void AddText(Vector2 pos, uint col, Utf8Buffer text) => ImGui.AddText(this, pos, col, text);
|
||||
public void AddText(Vector2 pos, uint col, ImU8String text) => ImGui.AddText(this, pos, col, text);
|
||||
|
||||
public void AddText(
|
||||
ImFontPtr font, float fontSize, Vector2 pos, uint col, Utf8Buffer text, float wrapWidth,
|
||||
ImFontPtr font, float fontSize, Vector2 pos, uint col, ImU8String text, float wrapWidth,
|
||||
scoped in Vector4 cpuFineClipRect) => ImGui.AddText(
|
||||
this,
|
||||
font,
|
||||
|
|
@ -43,6 +43,6 @@ public partial struct ImDrawListPtr
|
|||
cpuFineClipRect);
|
||||
|
||||
public void AddText(
|
||||
ImFontPtr font, float fontSize, Vector2 pos, uint col, Utf8Buffer text, float wrapWidth = 0f) =>
|
||||
ImFontPtr font, float fontSize, Vector2 pos, uint col, ImU8String text, float wrapWidth = 0f) =>
|
||||
ImGui.AddText(this, font, fontSize, pos, col, text, wrapWidth);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue