mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-13 12:14:16 +01:00
chore: remove [Experimental] from SeStringRenderer (#2144)
It hasn't caused problem for a while (though performance probably can be better), and looks good enough to remove this attribute.
This commit is contained in:
parent
722ee32353
commit
70af62885b
5 changed files with 0 additions and 10 deletions
|
|
@ -60,9 +60,7 @@ internal unsafe partial class TextNodeTree : ResNodeTree
|
||||||
EdgeStrength = 1f,
|
EdgeStrength = 1f,
|
||||||
};
|
};
|
||||||
|
|
||||||
#pragma warning disable SeStringRenderer
|
|
||||||
ImGuiHelpers.SeStringWrapped(this.NodeText.AsSpan(), style);
|
ImGuiHelpers.SeStringWrapped(this.NodeText.AsSpan(), style);
|
||||||
#pragma warning restore SeStringRenderer
|
|
||||||
}
|
}
|
||||||
catch
|
catch
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -12,8 +12,6 @@ using Lumina.Text.ReadOnly;
|
||||||
|
|
||||||
namespace Dalamud.Interface.Internal.Windows.Data.Widgets;
|
namespace Dalamud.Interface.Internal.Windows.Data.Widgets;
|
||||||
|
|
||||||
#pragma warning disable SeStringRenderer
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Widget for displaying AtkArrayData.
|
/// Widget for displaying AtkArrayData.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
||||||
|
|
@ -18,8 +18,6 @@ using Lumina.Excel.Sheets;
|
||||||
|
|
||||||
namespace Dalamud.Interface.Internal.Windows.Data.Widgets;
|
namespace Dalamud.Interface.Internal.Windows.Data.Widgets;
|
||||||
|
|
||||||
#pragma warning disable SeStringRenderer
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Widget for displaying inventory data.
|
/// Widget for displaying inventory data.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
||||||
|
|
@ -23,8 +23,6 @@ using Lumina.Text.ReadOnly;
|
||||||
|
|
||||||
namespace Dalamud.Interface.Internal.Windows.Data.Widgets;
|
namespace Dalamud.Interface.Internal.Windows.Data.Widgets;
|
||||||
|
|
||||||
#pragma warning disable SeStringRenderer
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Widget for displaying Addon Data.
|
/// Widget for displaying Addon Data.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
||||||
|
|
@ -212,7 +212,6 @@ public static class ImGuiHelpers
|
||||||
/// <returns>Interaction result of the rendered text.</returns>
|
/// <returns>Interaction result of the rendered text.</returns>
|
||||||
/// <remarks>This function is experimental. Report any issues to GitHub issues or to Discord #dalamud-dev channel.
|
/// <remarks>This function is experimental. Report any issues to GitHub issues or to Discord #dalamud-dev channel.
|
||||||
/// The function definition is stable; only in the next API version a function may be removed.</remarks>
|
/// The function definition is stable; only in the next API version a function may be removed.</remarks>
|
||||||
[Experimental("SeStringRenderer")]
|
|
||||||
public static SeStringDrawResult SeStringWrapped(
|
public static SeStringDrawResult SeStringWrapped(
|
||||||
ReadOnlySpan<byte> sss,
|
ReadOnlySpan<byte> sss,
|
||||||
scoped in SeStringDrawParams style = default,
|
scoped in SeStringDrawParams style = default,
|
||||||
|
|
@ -229,7 +228,6 @@ public static class ImGuiHelpers
|
||||||
/// <returns>Interaction result of the rendered text.</returns>
|
/// <returns>Interaction result of the rendered text.</returns>
|
||||||
/// <remarks>This function is experimental. Report any issues to GitHub issues or to Discord #dalamud-dev channel.
|
/// <remarks>This function is experimental. Report any issues to GitHub issues or to Discord #dalamud-dev channel.
|
||||||
/// The function definition is stable; only in the next API version a function may be removed.</remarks>
|
/// The function definition is stable; only in the next API version a function may be removed.</remarks>
|
||||||
[Experimental("SeStringRenderer")]
|
|
||||||
public static SeStringDrawResult CompileSeStringWrapped(
|
public static SeStringDrawResult CompileSeStringWrapped(
|
||||||
string text,
|
string text,
|
||||||
scoped in SeStringDrawParams style = default,
|
scoped in SeStringDrawParams style = default,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue