-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
83 lines (75 loc) · 1.89 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
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 - 2019 onox"
theme:
name: "material"
palette:
primary: "indigo"
accent: "blue"
logo:
icon: "🌌"
plugins:
- search
- minify:
minify_html: true
extra:
search:
language: "en"
social:
- type: "github"
link: "https://github.com/onox"
markdown_extensions:
- admonition
- def_list
- footnotes
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink:
repo_url_shorthand: true
user: onox
repo: orka
- pymdownx.superfences
- pymdownx.smartsymbols:
copyright: false
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
- toc:
permalink: true
nav:
- Orka: index.md
- Installation: installation.md
- Parallel programming: parallel-programming.md
- Containers: containers.md
- Logging: logging.md
- GPGPU: gpgpu.md
- Rendering:
- Introduction: rendering/index.md
- Buffers: rendering/buffers.md
- Vertex formats: rendering/vertex-formats.md
- Programs: rendering/programs.md
- Textures: rendering/textures.md
- Framebuffers: rendering/framebuffers.md
- Cameras: rendering/cameras.md
- Effects: rendering/effects.md
- Features: rendering/features.md
- Resources:
- Locations: resources/locations.md
- Loaders: resources/loaders.md
- Transforms:
- Vectors: transforms/vectors.md
- Matrices: transforms/matrices.md
- Quaternions: transforms/quaternions.md
- Scene trees: transforms/scene-trees.md
- Contributing: contributing.md