-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
147 lines (139 loc) · 4.41 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
site_name: "Orka"
site_description: "The OpenGL 4.6 Rendering Kernel in Ada 2012"
site_author: "onox"
site_url: "https://orka-engine.netlify.com"
repo_name: "onox/orka"
repo_url: "https://github.com/onox/orka"
# Disable edit button
edit_uri: ""
copyright: "Copyright © 2016 - 2021 onox"
theme:
name: "material"
custom_dir: docs/overrides
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: black
accent: blue
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: white
accent: "blue"
toggle:
icon: material/weather-night
name: Switch to light mode
icon:
logo: material/shark-fin
features:
- navigation.instant
- navigation.tracking
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.indexes
plugins:
- search:
lang:
- en
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/onox
- icon: fontawesome/brands/gitter
link: https://gitter.im/ada-lang/Lobby
markdown_extensions:
- abbr
- admonition
- def_list
- footnotes
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.mark
- pymdownx.tilde
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink:
repo_url_shorthand: true
user: onox
repo: orka
- pymdownx.snippets
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.smartsymbols:
copyright: false
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- toc:
permalink: true
nav:
- Home: index.md
- Getting started:
- Installation: installation.md
- Documentation:
- Rendering:
- Introduction: rendering/index.md
- Contexts: rendering/contexts.md
- Buffers: rendering/buffers.md
- Vertex formats: rendering/vertex-formats.md
- Shaders: rendering/shaders.md
- Textures: rendering/textures.md
- Framebuffers: rendering/framebuffers.md
- Frame graph: rendering/frame-graph.md
- Drawing: rendering/drawing.md
- Effects: rendering/effects.md
- Timers: rendering/timers.md
- Removed features: rendering/removed-features.md
- Windows and input:
- Introduction: windows-input/index.md
- Windows: windows-input/windows.md
- Monitors: windows-input/monitors.md
- Drag and drop: windows-input/drag-and-drop.md
- Clipboard: windows-input/clipboard.md
- Pointer and keyboard: windows-input/pointer-keyboard.md
- Gamepads: windows-input/gamepads.md
- Computing:
- Introduction: computing/index.md
- Algorithms: computing/algorithms.md
- Resources:
- Locations: resources/locations.md
- Loaders: resources/loaders.md
- Transforms:
- Vectors: transforms/vectors.md
- Matrices: transforms/matrices.md
- Quaternions: transforms/quaternions.md
- Numerics:
- Integrators: numerics/integrators.md
- Tensors:
- Introduction: numerics/tensors/index.md
- Shape and dimensions: numerics/tensors/shape-and-dimensions.md
- Creating tensors: numerics/tensors/creating-tensors.md
- Element-wise operations: numerics/tensors/element-wise-operations.md
- Matrix operations: numerics/tensors/matrix-operations.md
- Expressions: numerics/tensors/expressions.md
- Indexing: numerics/tensors/indexing.md
- Statistics: numerics/tensors/statistics.md
- Filtering: numerics/filtering.md
- Other:
- Parallel programming: parallel-programming.md
- Containers: containers.md
- Logging: logging.md
- Plug-ins:
- Archives: plugins/archives.md
- Atmosphere: plugins/atmosphere.md
- glTF: plugins/gltf.md
- Terrain: plugins/terrain.md
- Contributing: contributing.md