Render Pass API Streamlining #14
Loading…
Reference in New Issue
There is no content yet.
Delete Branch "render_pass_rewrite"
Deleting a branch is permanent. Although the deleted branch may exist for a short time before cleaning up, in most cases it CANNOT be undone. Continue?
Removes
Refresh_RenderPass
andRefresh_Framebuffer
objects.Refresh_BeginRenderPass
now takes a set ofRefresh_ColorAttachmentInfo
structs and an optionalRefresh_DepthStencilAttachmentInfo
struct that describe the render pass. The render pass and framebuffer objects are now managed by the implementation instead of the application.Accordingly,
Refresh_GraphicsPipelineCreateInfo
now takes aRefresh_GraphicsPipelineAttachmentInfo
struct that describes render passes that may be used with the pipeline. It is an error to bind a pipeline during an incompatible render pass.