Skip to content

Commit 7e70ae0

Browse files
Deploy to GitHub Pages
0 parents  commit 7e70ae0

File tree

4,443 files changed

+543316
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

4,443 files changed

+543316
-0
lines changed

docs/annotated.html

Lines changed: 890 additions & 0 deletions
Large diffs are not rendered by default.

docs/annotated_dup.js

Lines changed: 720 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/bc_s.png

676 Bytes
Loading

docs/bc_sd.png

635 Bytes
Loading

docs/classes.html

Lines changed: 188 additions & 0 deletions
Large diffs are not rendered by default.

docs/clipboard.js

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
/**
2+
3+
The code below is based on the Doxygen Awesome project, see
4+
https://github.com/jothepro/doxygen-awesome-css
5+
6+
MIT License
7+
8+
Copyright (c) 2021 - 2022 jothepro
9+
10+
Permission is hereby granted, free of charge, to any person obtaining a copy
11+
of this software and associated documentation files (the "Software"), to deal
12+
in the Software without restriction, including without limitation the rights
13+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14+
copies of the Software, and to permit persons to whom the Software is
15+
furnished to do so, subject to the following conditions:
16+
17+
The above copyright notice and this permission notice shall be included in all
18+
copies or substantial portions of the Software.
19+
20+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26+
SOFTWARE.
27+
28+
*/
29+
30+
let clipboard_title = "Copy to clipboard"
31+
let clipboard_icon = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path fill="#888" d="M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z"/></svg>`
32+
let clipboard_successIcon = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>`
33+
let clipboard_successDuration = 1000
34+
35+
$(function() {
36+
if(navigator.clipboard) {
37+
const fragments = document.getElementsByClassName("fragment")
38+
for(const fragment of fragments) {
39+
const clipboard_div = document.createElement("div")
40+
clipboard_div.classList.add("clipboard")
41+
clipboard_div.innerHTML = clipboard_icon
42+
clipboard_div.title = clipboard_title
43+
$(clipboard_div).click(function() {
44+
const content = this.parentNode.cloneNode(true)
45+
// filter out line number and folded fragments from file listings
46+
content.querySelectorAll(".lineno, .ttc, .foldclosed").forEach((node) => { node.remove() })
47+
let text = content.textContent
48+
// remove trailing newlines and trailing spaces from empty lines
49+
text = text.replace(/^\s*\n/gm,'\n').replace(/\n*$/,'')
50+
navigator.clipboard.writeText(text);
51+
this.classList.add("success")
52+
this.innerHTML = clipboard_successIcon
53+
window.setTimeout(() => { // switch back to normal icon after timeout
54+
this.classList.remove("success")
55+
this.innerHTML = clipboard_icon
56+
}, clipboard_successDuration);
57+
})
58+
fragment.insertBefore(clipboard_div, fragment.firstChild)
59+
}
60+
}
61+
})

docs/closed.png

132 Bytes
Loading

docs/cookie.js

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
/*!
2+
Cookie helper functions
3+
Copyright (c) 2023 Dimitri van Heesch
4+
Released under MIT license.
5+
*/
6+
let Cookie = {
7+
cookie_namespace: 'doxygen_',
8+
9+
readSetting(cookie,defVal) {
10+
if (window.chrome) {
11+
const val = localStorage.getItem(this.cookie_namespace+cookie) ||
12+
sessionStorage.getItem(this.cookie_namespace+cookie);
13+
if (val) return val;
14+
} else {
15+
let myCookie = this.cookie_namespace+cookie+"=";
16+
if (document.cookie) {
17+
const index = document.cookie.indexOf(myCookie);
18+
if (index != -1) {
19+
const valStart = index + myCookie.length;
20+
let valEnd = document.cookie.indexOf(";", valStart);
21+
if (valEnd == -1) {
22+
valEnd = document.cookie.length;
23+
}
24+
return document.cookie.substring(valStart, valEnd);
25+
}
26+
}
27+
}
28+
return defVal;
29+
},
30+
31+
writeSetting(cookie,val,days=10*365) { // default days='forever', 0=session cookie, -1=delete
32+
if (window.chrome) {
33+
if (days==0) {
34+
sessionStorage.setItem(this.cookie_namespace+cookie,val);
35+
} else {
36+
localStorage.setItem(this.cookie_namespace+cookie,val);
37+
}
38+
} else {
39+
let date = new Date();
40+
date.setTime(date.getTime()+(days*24*60*60*1000));
41+
const expiration = days!=0 ? "expires="+date.toGMTString()+";" : "";
42+
document.cookie = this.cookie_namespace + cookie + "=" +
43+
val + "; SameSite=Lax;" + expiration + "path=/";
44+
}
45+
},
46+
47+
eraseSetting(cookie) {
48+
if (window.chrome) {
49+
if (localStorage.getItem(this.cookie_namespace+cookie)) {
50+
localStorage.removeItem(this.cookie_namespace+cookie);
51+
} else if (sessionStorage.getItem(this.cookie_namespace+cookie)) {
52+
sessionStorage.removeItem(this.cookie_namespace+cookie);
53+
}
54+
} else {
55+
this.writeSetting(cookie,'',-1);
56+
}
57+
},
58+
}
Lines changed: 132 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,132 @@
1+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2+
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US">
3+
<head>
4+
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
5+
<meta http-equiv="X-UA-Compatible" content="IE=11"/>
6+
<meta name="generator" content="Doxygen 1.13.2"/>
7+
<meta name="viewport" content="width=device-width, initial-scale=1"/>
8+
<title>Diligent Engine: Diligent::InputLayoutDescX Struct Reference</title>
9+
<link href="../../tabs.css" rel="stylesheet" type="text/css"/>
10+
<script type="text/javascript" src="../../jquery.js"></script>
11+
<script type="text/javascript" src="../../dynsections.js"></script>
12+
<script type="text/javascript" src="../../clipboard.js"></script>
13+
<link href="../../navtree.css" rel="stylesheet" type="text/css"/>
14+
<script type="text/javascript" src="../../navtreedata.js"></script>
15+
<script type="text/javascript" src="../../navtree.js"></script>
16+
<script type="text/javascript" src="../../resize.js"></script>
17+
<script type="text/javascript" src="../../cookie.js"></script>
18+
<link href="../../search/search.css" rel="stylesheet" type="text/css"/>
19+
<script type="text/javascript" src="../../search/searchdata.js"></script>
20+
<script type="text/javascript" src="../../search/search.js"></script>
21+
<script type="text/javascript">
22+
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&amp;dn=expat.txt MIT */
23+
$(function() { init_search(); });
24+
/* @license-end */
25+
</script>
26+
<link href="../../doxygen.css" rel="stylesheet" type="text/css" />
27+
</head>
28+
<body>
29+
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
30+
<div id="titlearea">
31+
<table cellspacing="0" cellpadding="0">
32+
<tbody>
33+
<tr id="projectrow">
34+
<td id="projectalign">
35+
<div id="projectname">Diligent Engine
36+
</div>
37+
</td>
38+
<td> <div id="MSearchBox" class="MSearchBoxInactive">
39+
<span class="left">
40+
<span id="MSearchSelect" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()">&#160;</span>
41+
<input type="text" id="MSearchField" value="" placeholder="Search" accesskey="S"
42+
onfocus="searchBox.OnSearchFieldFocus(true)"
43+
onblur="searchBox.OnSearchFieldFocus(false)"
44+
onkeyup="searchBox.OnSearchFieldChange(event)"/>
45+
</span><span class="right">
46+
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="../../search/close.svg" alt=""/></a>
47+
</span>
48+
</div>
49+
</td>
50+
</tr>
51+
</tbody>
52+
</table>
53+
</div>
54+
<!-- end header part -->
55+
<!-- Generated by Doxygen 1.13.2 -->
56+
<script type="text/javascript">
57+
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&amp;dn=expat.txt MIT */
58+
var searchBox = new SearchBox("searchBox", "../../search/",'.html');
59+
/* @license-end */
60+
</script>
61+
<script type="text/javascript">
62+
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&amp;dn=expat.txt MIT */
63+
$(function() { codefold.init(1); });
64+
/* @license-end */
65+
</script>
66+
</div><!-- top -->
67+
<div id="side-nav" class="ui-resizable side-nav-resizable">
68+
<div id="nav-tree">
69+
<div id="nav-tree-contents">
70+
<div id="nav-sync" class="sync"></div>
71+
</div>
72+
</div>
73+
<div id="splitbar" style="-moz-user-select:none;"
74+
class="ui-resizable-handle">
75+
</div>
76+
</div>
77+
<script type="text/javascript">
78+
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&amp;dn=expat.txt MIT */
79+
$(function(){initNavTree('d0/d00/structDiligent_1_1InputLayoutDescX.html','../../'); initResizable(true); });
80+
/* @license-end */
81+
</script>
82+
<div id="doc-content">
83+
<!-- window showing the filter options -->
84+
<div id="MSearchSelectWindow"
85+
onmouseover="return searchBox.OnSearchSelectShow()"
86+
onmouseout="return searchBox.OnSearchSelectHide()"
87+
onkeydown="return searchBox.OnSearchSelectKey(event)">
88+
</div>
89+
90+
<!-- iframe showing the search results (closed by default) -->
91+
<div id="MSearchResultsWindow">
92+
<div id="MSearchResults">
93+
<div class="SRPage">
94+
<div id="SRIndex">
95+
<div id="SRResults"></div>
96+
<div class="SRStatus" id="Loading">Loading...</div>
97+
<div class="SRStatus" id="Searching">Searching...</div>
98+
<div class="SRStatus" id="NoMatches">No Matches</div>
99+
</div>
100+
</div>
101+
</div>
102+
</div>
103+
104+
<div class="header">
105+
<div class="summary">
106+
<a href="../../dd/d48/structDiligent_1_1InputLayoutDescX-members.html">List of all members</a> </div>
107+
<div class="headertitle"><div class="title">Diligent::InputLayoutDescX Struct Reference</div></div>
108+
</div><!--header-->
109+
<div class="contents">
110+
111+
<p>C++ wrapper over <a class="el" href="../../d4/d3a/structDiligent_1_1InputLayoutDesc.html" title="Layout description.">InputLayoutDesc</a>.
112+
<a href="#details">More...</a></p>
113+
114+
<p><code>#include &lt;GraphicsTypesX.hpp&gt;</code></p>
115+
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
116+
<div class="textblock"><p>C++ wrapper over <a class="el" href="../../d4/d3a/structDiligent_1_1InputLayoutDesc.html" title="Layout description.">InputLayoutDesc</a>. </p>
117+
</div></div><!-- contents -->
118+
</div><!-- doc-content -->
119+
<!-- HTML footer for doxygen 1.13.2-->
120+
<!-- start footer part -->
121+
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
122+
<ul>
123+
<li class="navelem"><a class="el" href="../../d7/dca/namespaceDiligent.html">Diligent</a></li><li class="navelem"><a class="el" href="../../d0/d00/structDiligent_1_1InputLayoutDescX.html">InputLayoutDescX</a></li>
124+
<li class="footer">
125+
<a href="https://diligentgraphics.com">
126+
<img class="footer" src="https://github.com/DiligentGraphics/DiligentCore/raw/master/media/diligentgraphics-logo.png" width="99" height="32" alt="Diligent Graphics" />
127+
</a>
128+
</li>
129+
</ul>
130+
</div>
131+
</body>
132+
</html>

0 commit comments

Comments
 (0)