31 lines
795 B
C#
31 lines
795 B
C#
using MoonWorks;
|
|
using MoonWorks.Graphics;
|
|
|
|
namespace MoonWorks.Test
|
|
{
|
|
class ClearScreenGame : Game
|
|
{
|
|
public ClearScreenGame() : base(TestUtils.GetStandardWindowCreateInfo(), TestUtils.GetStandardFrameLimiterSettings(), 60, true) { }
|
|
|
|
protected override void Update(System.TimeSpan delta) { }
|
|
|
|
protected override void Draw(double alpha)
|
|
{
|
|
CommandBuffer cmdbuf = GraphicsDevice.AcquireCommandBuffer();
|
|
Texture? backbuffer = cmdbuf.AcquireSwapchainTexture(MainWindow);
|
|
if (backbuffer != null)
|
|
{
|
|
cmdbuf.BeginRenderPass(new ColorAttachmentInfo(backbuffer, Color.CornflowerBlue));
|
|
cmdbuf.EndRenderPass();
|
|
}
|
|
GraphicsDevice.Submit(cmdbuf);
|
|
}
|
|
|
|
public static void Main(string[] args)
|
|
{
|
|
ClearScreenGame game = new ClearScreenGame();
|
|
game.Run();
|
|
}
|
|
}
|
|
}
|