Skip to content

Commit

Permalink
Fix typo and move wip warning
Browse files Browse the repository at this point in the history
  • Loading branch information
eliemichel committed Jun 29, 2024
1 parent 4933179 commit e006350
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 4 additions & 0 deletions basic-3d-rendering/input-geometry/index-buffer.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Index Buffer
============

```{admonition} 🚧 WIP
From this chapter on, the guide uses a previous version of the accompanying code (in particular, it does not define an `Application` class but rather puts everything in a monolithic `main` function). **I am currently refreshing it** chapter by chapter and this is **where I am currently working**!
```

````{tab} With webgpu.hpp
*Resulting code:* [`step034`](https://github.com/eliemichel/LearnWebGPU-Code/tree/step034)
````
Expand Down
6 changes: 1 addition & 5 deletions basic-3d-rendering/input-geometry/multiple-attributes.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
Multiple Attributes
===================

```{admonition} 🚧 WIP
From this chapter on, the guide uses a previous version of the accompanying code (in particular, it does not define an `Application` class but rather puts everything in a monolithic `main` function). **I am currently refreshing it** chapter by chapter and this is **where I am currently working**!
```

```{lit-setup}
:tangle-root: 033 - Multiple Attributes - Option A - vanilla
:parent: 032 - A first Vertex Attribute - vanilla
Expand Down Expand Up @@ -334,7 +330,7 @@ vertexBufferLayout.stepMode = VertexStepMode::Vertex;
```{lit} C++, Describe buffer stride and step mode (replace, for tangle root "Vanilla")
vertexBufferLayout.arrayStride = 5 * sizeof(float);
// ^^^^^^^^^^^^^^^^^ The new stride
vertexBufferLayout.stepMode = GPUVertexStepMode_Vertex;
vertexBufferLayout.stepMode = WGPUVertexStepMode_Vertex;
```
````
Expand Down

0 comments on commit e006350

Please sign in to comment.