This repository has been archived by the owner on Aug 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
75 lines (58 loc) · 3.08 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<title>Waffle</title>
<link href="waffle.css" rel="stylesheet" type="text/css">
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
</head>
<body>
<h1><img src="waffle.jpg" alt="Yummy waffles"/></h1>
<h2>Waffle</h2>
<h4>Synopsis</h4>
<p>Waffle is a cross-platform C library that allows one to defer selection of an OpenGL API and window system until runtime.
For example, on Linux, Waffle enables an application to select X11/EGL with an OpenGL 3.3 core profile, Wayland with OpenGL ES2, and other window system / API combinations.</p>
<p>Waffle's immediate goal is to enable <a href="http://piglit.freedesktop.org">Piglit</a>, <a href="http://mesa3d.org">Mesa</a>'s OpenGL test suite, to test multiple OpenGL flavors in a cross-platform way. However, Waffle's design does not preclude it from being useful to other projects.</p>
<h4>Presentation at XDC 2012</h4>
<p>At the 2012 X Developer's Conference in Nürnberg, Chad Versace gave a 30 minute presentation on Waffle, which includes a demo of Doom3. Demo begins at 9:15. Q&A session begins at 15:30.</p>
<p>To read the presentation's text, the video needs to be fullscreen.</p>
<ul>
<li><a href="http://archive.waffle-gl.org/files/2012/09/21/xdc-2012-waffle.txt">Presentation Notes</a></li>
<li>Video
<a href="http://archive.waffle-gl.org/files/2012/09/21/xdc-2012-waffle.webm">(webm 97MB)</a>
<a href="http://archive.waffle-gl.org/files/2012/09/21/xdc-2012-waffle.mp4">(mp4 71MB)</a>
</li>
</ul>
<video width="420" height="315" controls>
<source src="http://archive.waffle-gl.org/files/2012/09/21/xdc-2012-waffle.webm" type="video/webm"/>
<source src="http://archive.waffle-gl.org/files/2012/09/21/xdc-2012-waffle.mp4" type="video/mp4"/>
</video>
<h4>Details</h4>
<ul>
<li><a href="releases.html">Releases</a></li>
<li>Source
<ul>
<li><a href="https://gitlab.freedesktop.org/mesa/waffle">GitLab</a> (freedesktop.org)</li>
<li><a href="https://gitlab.freedesktop.org/mesa/waffle.git">https://gitlab.freedesktop.org/mesa/waffle.git</a></li>
</ul>
</li>
<li>Documentation
<ul>
<li><a href="features.html">Features</a></li>
<li><a href="man/index.html">Manual Pages</a></li>
<li><a href="https://gitlab.freedesktop.org/mesa/waffle/tree/master/examples">Example code</a></li>
</ul>
</li>
<li>Communication
<ul>
<li>Mailing List <a href="http://lists.freedesktop.org/mailman/listinfo/waffle">[subscribe]</a> <a href="http://www.mail-archive.com/[email protected]/">[archive]</a></li>
<li><a href="https://gitlab.freedesktop.org/mesa/waffle/issues">Issue Tracker</a>
</ul>
</li>
<li><a href="acknowledgements.html">Acknowledgements</a></li>
<li>Maintainer: Chad Versace <a href="mailto:[email protected]"><tt><[email protected]></tt></a></li>
</ul>
</body>
</html>
<!--
vim:et sw=2 ts=2:
-->