* spike new graphics engine * fix remote watermarks; add graphics engine to vaapi * add graphics engine to qsv
10 lines
265 B
C#
10 lines
265 B
C#
using ErsatzTV.Core.Domain;
|
|
|
|
namespace ErsatzTV.Core.Interfaces.Streaming;
|
|
|
|
public interface IGraphicsElement
|
|
{
|
|
Task InitializeAsync(Resolution frameSize, int frameRate, CancellationToken cancellationToken);
|
|
|
|
void Draw(object context, TimeSpan timestamp);
|
|
} |