mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 12:57:36 +08:00
17 lines
510 B
C#
17 lines
510 B
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
using System.Runtime.InteropServices;
|
|
using osu.Framework.Graphics.Shaders.Types;
|
|
|
|
namespace osu.Game.Graphics.Backgrounds
|
|
{
|
|
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
|
public record struct TriangleBorderData
|
|
{
|
|
public UniformFloat Thickness;
|
|
public UniformFloat TexelSize;
|
|
private readonly UniformPadding8 pad1;
|
|
}
|
|
}
|