Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AppBase ¶
type AppBase struct { vkg.GraphicsApp GraphicsModules []IGraphicsModule InputModules []IInputModule // contains filtered or unexported fields }
func (*AppBase) AddGraphicsModule ¶
func (b *AppBase) AddGraphicsModule(g IGraphicsModule)
func (*AppBase) AddInputModule ¶
func (b *AppBase) AddInputModule(i IInputModule)
func (*AppBase) ShouldClose ¶
type IGraphicsModule ¶
type IGraphicsModule interface { NewFrame(base *AppBase) PostFrame() Destroy() CreateCommandBuffers(renderPass vk.RenderPass, framebuffer vk.Framebuffer, app *AppBase) ([]vk.CommandBuffer, error) }
Click to show internal directories.
Click to hide internal directories.