19 lines
374 B
C
19 lines
374 B
C
// =============================================
|
|
// Aster: surface.h
|
|
// Copyright (c) 2020-2024 Anish Bhobe
|
|
// =============================================
|
|
|
|
#pragma once
|
|
|
|
#include "global.h"
|
|
|
|
struct Context;
|
|
struct Window;
|
|
|
|
struct Surface
|
|
{
|
|
vk::SurfaceKHR m_Surface;
|
|
|
|
void Init(Context *context, const Window *window);
|
|
void Destroy(const Context *context);
|
|
}; |