-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c165b9d
commit b7c1a7e
Showing
10 changed files
with
569 additions
and
4 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,126 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="UTF-8"/> | ||
<title>Alias BufferUsageFlags - wgpu-d</title> | ||
<link rel="stylesheet" type="text/css" href="../../styles/ddox.css"/> | ||
<link rel="stylesheet" href="../../prettify/prettify.css" type="text/css"/> | ||
<script type="text/javascript" src="../../scripts/jquery.js">/**/</script><script type="text/javascript" src="../../scripts/ddox.js">/**/</script> | ||
</head> | ||
<body onload="setupDdox();"> | ||
<style> | ||
#main-nav > h1 { | ||
display: flex; | ||
align-items: flex-end; | ||
} | ||
#main-nav > h1 > span { | ||
padding-bottom: 0.25em; | ||
} | ||
#logo { | ||
margin-right: 0.5rem; | ||
max-width: 4rem; | ||
} | ||
</style> | ||
<nav id="main-nav"> | ||
<h1> | ||
<img id="logo" src="https://chances.github.io/wgpu-d/images/logo.png" alt="wgpu Logo"> | ||
<span>D Bindings</span> | ||
</h1> | ||
<ul style="list-style: none; padding: 0;"> | ||
<li> | ||
<a href="https://chances.github.io/wgpu-d">API Reference</a> | ||
</li> | ||
<li> | ||
<a href="https://code.dlang.org/packages/wgpu-d">Download</a> | ||
</li> | ||
<li> | ||
<a href="https://github.com/chances/wgpu-d#readme">Open Source on GitHub</a> | ||
</li> | ||
</ul> | ||
<h2>API Reference</h2> | ||
<noscript> | ||
<p style="color: red">The search functionality needs JavaScript enabled</p> | ||
</noscript> | ||
<div id="symbolSearchPane" style="display: none"> | ||
<form action="#" method="GET"> | ||
<input id="symbolSearch" type="text" name="q" placeholder="Search for symbols" autocomplete="off" onchange="performSymbolSearch(40);" onkeypress="this.onchange();" onpaste="this.onchange();" oninput="this.onchange();"/> | ||
</form> | ||
<ul id="symbolSearchResults" class="symbolList" style="display: none"></ul><script type="application/javascript" src="../../symbols.js"></script><script type="application/javascript">var symbolSearchRootDir = "../../"; | ||
$('#symbolSearchPane').show();</script> | ||
</div> | ||
<ul class="tree-view"> | ||
<li class="tree-view "> | ||
<div class="package ">wgpu | ||
</div> | ||
<ul class="tree-view"> | ||
<li> | ||
<div class="module "> | ||
<a href="../../wgpu/api.html">api</a> | ||
</div> | ||
</li> | ||
<li> | ||
<div class="module selected"> | ||
<a href="../../wgpu/enums.html">enums</a> | ||
</div> | ||
</li> | ||
<li> | ||
<div class="module "> | ||
<a href="../../wgpu/limits.html">limits</a> | ||
</div> | ||
</li> | ||
<li> | ||
<div class="module "> | ||
<a href="../../wgpu/utils.html">utils</a> | ||
</div> | ||
</li> | ||
</ul> | ||
</li> | ||
</ul> | ||
</nav> | ||
<div id="main-contents"> | ||
<h1>Alias BufferUsageFlags</h1><p></p> | ||
<div class="prototype"> | ||
<code class="lang-d"> | ||
<div class="single-prototype"> | ||
<span class="kwd">alias</span> <span class="pln">BufferUsageFlags</span> | ||
<span class="pun">=</span> <span class="pln">std<wbr/></span><span class="pun">.</span><span class="pln">typecons<wbr/></span><span class="pun">.</span><span class="typ">BitFlags</span>!(wgpu.enums.BufferUsage,1)<span class="pun">;</span> | ||
</div> | ||
</code> | ||
</div> | ||
|
||
|
||
<footer> | ||
<table class="license-info"> | ||
<tr> | ||
<th>Authors</th> | ||
<td> | ||
<p>Chance Snow | ||
</p> | ||
|
||
</td> | ||
</tr> | ||
<tr> | ||
<th>Copyright</th> | ||
<td> | ||
<p>Copyright © 2020-2023 Chance Snow. All rights reserved. | ||
</p> | ||
|
||
</td> | ||
</tr> | ||
<tr> | ||
<th>License</th> | ||
<td> | ||
<p>MIT License | ||
</p> | ||
|
||
</td> | ||
</tr> | ||
</table> | ||
<div style="display: flex; justify-content: space-between; margin-top: 2em;"> | ||
<a href="https://github.com/chances/wgpu-d#readme">GitHub</a> | ||
<span class="faint" style="float: right;">Generated using <a href="https://code.dlang.org/packages/ddox">DDOX</a></span> | ||
</div> | ||
</footer> | ||
</div> | ||
</body> | ||
</html> |
Oops, something went wrong.