mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
15 lines
359 B
C#
15 lines
359 B
C#
using System;
|
|
using SkiaSharp;
|
|
|
|
namespace Artemis.Core.SkiaSharp;
|
|
|
|
/// <summary>
|
|
/// Represents a managed wrapper around a SkiaSharp context
|
|
/// </summary>
|
|
public interface IManagedGraphicsContext : IDisposable
|
|
{
|
|
/// <summary>
|
|
/// Gets the graphics context created by this wrapper
|
|
/// </summary>
|
|
GRContext GraphicsContext { get; }
|
|
} |