From e53f715daee35ef09eb41110bcefe5e5ca00c982 Mon Sep 17 00:00:00 2001 From: Elie Michel Date: Thu, 6 Jun 2024 09:57:10 +0200 Subject: [PATCH] Move WIP warning --- basic-3d-rendering/input-geometry/a-first-vertex-attribute.md | 4 ++++ basic-3d-rendering/input-geometry/playing-with-buffers.md | 4 ---- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/basic-3d-rendering/input-geometry/a-first-vertex-attribute.md b/basic-3d-rendering/input-geometry/a-first-vertex-attribute.md index e369793..61e231b 100644 --- a/basic-3d-rendering/input-geometry/a-first-vertex-attribute.md +++ b/basic-3d-rendering/input-geometry/a-first-vertex-attribute.md @@ -1,6 +1,10 @@ A first Vertex Attribute ======================== +```{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:* [`step032`](https://github.com/eliemichel/LearnWebGPU-Code/tree/step032) ```` diff --git a/basic-3d-rendering/input-geometry/playing-with-buffers.md b/basic-3d-rendering/input-geometry/playing-with-buffers.md index aec6c3d..b0354fa 100644 --- a/basic-3d-rendering/input-geometry/playing-with-buffers.md +++ b/basic-3d-rendering/input-geometry/playing-with-buffers.md @@ -1,10 +1,6 @@ Playing with buffers ==================== -```{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: 031 - Playing with buffers - vanilla :parent: 030 - Hello Triangle - vanilla