zworld/engine/renderapi/renderpass/args.go

15 lines
259 B
Go
Raw Permalink Normal View History

2024-01-14 22:56:06 +08:00
package renderpass
import (
"zworld/engine/renderapi/renderpass/attachment"
)
type Args struct {
Name string
ColorAttachments []attachment.Color
DepthAttachment *attachment.Depth
Subpasses []Subpass
Dependencies []SubpassDependency
}