Skip to content

Commit ab5507d

Browse files
fix: fixing blog post about VGS
1 parent 1096bac commit ab5507d

3 files changed

Lines changed: 9 additions & 35 deletions

File tree

blog/2026-05-01-virtualized-geometry-systems.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ Modern game engines face an intractable triangle throughput ceiling: GPU rasteri
2121

2222
**Keywords:** virtualized geometry, LOD, BVH, cluster hierarchy, software rasterization, meshlet, screen-space error, GPU-driven rendering, visibility buffer, nanite
2323

24+
<!-- truncate -->
25+
2426
---
2527

2628
## Table of Contents
@@ -36,7 +38,7 @@ Modern game engines face an intractable triangle throughput ceiling: GPU rasteri
3638
9. [Virtual Shadow Maps](#9-virtual-shadow-maps)
3739
10. [Implementation Architecture](#10-implementation-architecture)
3840
11. [Performance Analysis and Benchmarks](#11-performance-analysis-and-benchmarks)
39-
12. [Open Problems and Future Work](#12-open-problems-and-future-work)
41+
12. [Advanced Topics (State of the Art, 2026)](#12-advanced-topics-state-of-the-art-2026)
4042
13. [References](#13-references)
4143

4244
---
@@ -783,7 +785,7 @@ Asset Pipeline (Offline):
783785
Runtime (Per-Frame):
784786
┌────────────────────────────────────────────────────────────────┐
785787
│ StreamingManager │
786-
│ └─ PageCache (GPU VRAM) ←─────── DiskIO (DirectStorage) │
788+
│ └─ PageCache (GPU VRAM) ←─────── DiskIO (DirectStorage)
787789
│ │
788790
│ FrameRenderer │
789791
│ ├─ CullPass (Compute) │

docusaurus.config.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,9 @@ const config: Config = {
7373
// Useful options to enforce blogging best practices
7474
onInlineTags: 'warn',
7575
onInlineAuthors: 'warn',
76-
onUntruncatedBlogPosts: 'warn'
76+
onUntruncatedBlogPosts: 'warn',
77+
remarkPlugins: [remarkMath],
78+
rehypePlugins: [rehypeKatex]
7779
},
7880
theme: {
7981
customCss: './src/css/custom.css'
@@ -285,7 +287,7 @@ const config: Config = {
285287
]
286288
},
287289
{
288-
title: "Repositories",
290+
title: 'Repositories',
289291
items: [
290292
{
291293
label: 'Organization',

package-lock.json

Lines changed: 1 addition & 31 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)