pathfinder/site/index.html

75 lines
2.8 KiB
HTML
Raw Permalink Normal View History

2019-02-15 20:29:35 -05:00
<!DOCTYPE html>
<html>
<head>
<title>Pathfinder 3</title>
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
<style>
@font-face {
font-family: "D-DIN";
src: url("assets/fonts/D-DIN.woff2") format("woff2");
}
@font-face {
font-family: "D-DIN";
font-weight: bold;
src: url("assets/fonts/D-DIN-Bold.woff2") format("woff2");
}
body {
font-family: "D-DIN", sans-serif;
}
</style>
</head>
<body>
<header class="navbar navbar-expand navbar-dark bg-dark">
<a class="navbar-brand text-light">Pathfinder</a>
<ul class="navbar-nav">
<li class="nav-item active"><a class="nav-link" href="/">Home</a></li>
<li class="nav-item"><a class="nav-link" href="/doc">Documentation</a></li>
</ul>
<ul class="navbar-nav ml-md-auto">
<li class="nav-item">
<a class="nav-link" href="https://github.com/pcwalton/pathfinder/tree/pf3">Code</a>
</li>
</ul>
</header>
<main id="content" class="py-5">
2019-03-01 17:58:02 -05:00
<div id="masthead" class="container">
2019-02-15 20:29:35 -05:00
<h1 class="font-weight-bold">Pathfinder 3</h1>
2019-03-01 17:58:02 -05:00
<h2>Fast GPU text and vector graphics rendering for your OpenGL app.</h2>
</div>
<div id="features">
<div class="feature">
<h2>Built on Rust</h2>
<div>
Pathfinder is written in Rust, with only the minimum unsafe code necessary to
use SIMD and render with OpenGL. You can use it to render untrusted content
without worrying about security problems or segfaults.
</div>
</div>
<div class="feature">
<h2>Works everywhere</h2>
<div>
Pathfinder runs on any desktop or mobile GPU supporting OpenGL or OpenGL ES 3.0
(roughly, any GPU manufactured after 2002). There's no need for fancy features
like compute, geometry shaders, and tessellation shaders.
</div>
</div>
<div class="feature">
<h2>Easy to use</h2>
<div>
Thanks to the inclusion of the resvg library, a subset of SVG is supported
out-of-the-box. Rendering SVG content to the screen is just a few lines of
code.
</div>
</div>
</div>
<div>
Pathfinder is an open-source Mozilla Research project under the Servo umbrella.
It's also a component of WebRender, the new Web renderer for Firefox. We welcome
contributions from anyone.
2019-02-15 20:29:35 -05:00
</div>
</main>
</body>
</html>