15 lines
259 B
Go
15 lines
259 B
Go
package renderpass
|
|
|
|
import (
|
|
"zworld/engine/renderapi/renderpass/attachment"
|
|
)
|
|
|
|
type Args struct {
|
|
Name string
|
|
ColorAttachments []attachment.Color
|
|
DepthAttachment *attachment.Depth
|
|
|
|
Subpasses []Subpass
|
|
Dependencies []SubpassDependency
|
|
}
|