-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgraphics.html
More file actions
90 lines (80 loc) · 4.87 KB
/
Copy pathgraphics.html
File metadata and controls
90 lines (80 loc) · 4.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Projects and resources on computer graphics, real-time rendering and C++.">
<meta name="theme-color" content="#ffffff">
<!-- Open Graph / Facebook -->
<meta property="og:site_name" content="Alexandre Lamure">
<meta property="og:locale" content="en_US">
<meta property="og:url" content="https://alexandrelamure.github.io/graphics.html">
<meta property="og:title" content="Graphics | Alexandre Lamure">
<meta property="og:description" content="Projects and resources on computer graphics, real-time rendering and C++.">
<meta property="og:type" content="website">
<meta property="og:image" content="https://alexandrelamure.github.io/resources/profile-picture.jpg">
<meta property="og:image:alt" content="Alexandre Lamure">
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Graphics | Alexandre Lamure">
<meta name="twitter:description" content="Projects and resources on computer graphics, real-time rendering and C++.">
<meta name="twitter:image" content="https://alexandrelamure.github.io/resources/profile-picture.jpg">
<meta name="twitter:image:alt" content="Alexandre Lamure">
<title>Graphics | Alexandre Lamure</title>
<link rel="canonical" href="https://alexandrelamure.github.io/graphics.html">
<link rel="stylesheet" href="style.css">
<link rel="icon" href="resources/website-icon.jpg" type="image/jpeg">
<link rel="apple-touch-icon" href="resources/website-icon.jpg">
<link rel="manifest" href="site.webmanifest">
</head>
<body>
<header>
<nav>
<a href="index.html" class="logo">Alexandre Lamure</a>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="graphics.html" class="active">Graphics</a></li>
<li><a href="teaching.html">Teaching</a></li>
<li><a href="music.html">Music</a></li>
</ul>
</nav>
</header>
<main class="content">
<h1>Graphics blog</h1>
<p>I am a 3D graphics software engineer, working at Quantic Dream on <a class="simple-link" href="https://www.youtube.com/watch?v=4cJpiOPKH14" target="_blank" rel="noopener noreferrer">Star Wars Eclipse</a> and <a class="simple-link" href="https://www.youtube.com/watch?v=KU--4IVoDHo" target="_blank" rel="noopener noreferrer">Spellcasters Chronicles</a>.</p>
<section class="graphics-posts">
<h2>Posts</h2>
<div class="graphics-post-list">
<a class="graphics-post-item" href="graphics-posts/from-opengl-to-vulkan.html" target="_self">
<img class="graphics-post-thumb" src="resources/graphics-posts/from-opengl-to-vulkan/thumbnail.jpg" alt="From OpenGL to Vulkan">
<div class="graphics-post-content">
<h3 class="graphics-post-title">From OpenGL to Vulkan</h3>
<div class="graphics-post-date">September 13, 2026</div>
<p class="graphics-post-excerpt">First principles of porting a small OpenGL engine to Vulkan.</p>
</div>
</a>
</div>
<div class="graphics-post-list">
<a class="graphics-post-item" href="graphics-posts/stylized-ggx-shading.html" target="_self">
<img class="graphics-post-thumb" src="resources/graphics-posts/stylized-ggx-shading/demo.jpg" alt="Stylized GGX shading demo — toon specular highlights">
<div class="graphics-post-content">
<h3 class="graphics-post-title">Stylized GGX shading — toon specular highlights</h3>
<div class="graphics-post-date">July 19, 2026</div>
<p class="graphics-post-excerpt">A practical implementation of toon specular highlights on a PBR material.</p>
</div>
</a>
</div>
<div class="graphics-post-list">
<a class="graphics-post-item" href="graphics-posts/spellcasters-post-mortem.html" target="_self">
<img class="graphics-post-thumb" src="https://d3tyjtqxpxwenc.cloudfront.net/K8AraL/Header_NEW_4dd6894a95.jpg" alt="Spellcasters Chronicles key art">
<div class="graphics-post-content">
<h3 class="graphics-post-title">Spellcasters Chronicles — Post-Mortem</h3>
<div class="graphics-post-date">June 21, 2026</div>
<p class="graphics-post-excerpt">My personal reflection on the development of Spellcasters Chronicles.</p>
</div>
</a>
</div>
</section>
</main>
</body>
</html>