From 771cf4f8aa107eb17a42a817e597899afef83a3c Mon Sep 17 00:00:00 2001 From: cosmonaut Date: Thu, 28 Jan 2021 14:23:30 -0800 Subject: [PATCH] command buffer intro --- content/Graphics/CommandBuffer/_index.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 content/Graphics/CommandBuffer/_index.md diff --git a/content/Graphics/CommandBuffer/_index.md b/content/Graphics/CommandBuffer/_index.md new file mode 100644 index 0000000..8f30396 --- /dev/null +++ b/content/Graphics/CommandBuffer/_index.md @@ -0,0 +1,9 @@ +--- +title: "Command Buffer" +date: 2021-01-28T14:05:53-08:00 +weight: 4 +--- + +Now that we have our rendering state set up, we can talk about issuing commands. + +There are three kinds of overarching operations that we perform using the command buffer: applying render state, uploading uniform data, and binding resources. Let's go through each of these and then tie it all together.