-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
99 lines (97 loc) · 2.92 KB
/
mkdocs.yml
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
91
92
93
94
95
96
97
98
99
site_name: OpenGL - Getting Started
site_author: deccer
site_url: https://deccer.github.io/opengl-getting-started
repo_name: deccer/opengl-getting-started
repo_url: https://github.com/deccer/opengl-getting-started
site_description: OpenGL Getting Started
copyright: Copyright 2023 deccer
theme:
name: material
logo: https://cdn-icons-png.flaticon.com/512/1949/1949895.png
font:
text: Roboto
code: Roboto Mono
palette:
scheme: slate
primary: pink
accent: yellow
language: en
features:
- navigation.sections
- navigation.indexes
#- navigation.tabs
#- navigation.tabs.sticky
- navigation.footer
icon:
admonition:
note: fontawesome/solid/note-sticky
abstract: fontawesome/solid/book
info: fontawesome/solid/circle-info
tip: fontawesome/solid/bullhorn
success: fontawesome/solid/check
question: fontawesome/solid/circle-question
warning: fontawesome/solid/triangle-exclamation
failure: fontawesome/solid/bomb
danger: fontawesome/solid/skull
bug: fontawesome/solid/robot
example: fontawesome/solid/flask
quote: fontawesome/solid/quote-left
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/deccer/opengl-getting-started
name: OpenGL Getting Started on Github
- icon: fontawesome/brands/discord
link: https://discord.gg/6mgNGk7
name: opengl-getting-started on discord
analytics:
provider: google
property: G-2FDD1M3R22
extra_css:
- stylesheets/extra.css
markdown_extensions:
- admonition
- footnotes
- markdown.extensions.toc:
permalink: true
- attr_list
- pymdownx.details
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.superfences
- pymdownx.snippets:
base_path:
- ""
- pymdownx.tabbed:
alternate_style: true
combine_header_slug: true
- pymdownx.caret
- pymdownx.mark
- pymdownx.tilde
- pymdownx.critic:
mode: view
- pymdownx.betterem:
smart_enable: all
- def_list
nav:
- Home: index.md
- Setup:
- Setup: 00-setup/00-setup.md
- Basics:
- Basic Window: 01-basics/01-basic-window.md
- Basic Window With Triangle: 01-basics/02-basic-window-and-triangle.md
- Debugging:
- Debugging: 02-debugging/01-debugging.md
- Debug Callback:
- Debug Callback: 02-debugging/02-debug-callback.md
- Debug Callback Exercises:
- Exercise 1: 02-debugging/02-debug-callback-exercise-01.md
- Exercise 2: 02-debugging/02-debug-callback-exercise-02.md
- RenderDoc: 02-debugging/03-renderdoc.md
- RenderDoc Exercises:
- Exercise 1: 02-debugging/04-renderdoc-exercise-01.md
- Nsight Graphics: 02-debugging/05-nsight-graphics.md
#- Basic Application: 00-setup/01-basic-application.md
#- Basic Triangle:
# - Basic Triangle: 10-basic-triangle/10-basic-triangle.md
- About: about.md