Skip to content

Commit

Permalink
Deploying to javadoc from @ 28c0e82 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
Ocelot5836 committed Feb 9, 2025
1 parent 80f3d80 commit e0e545b
Show file tree
Hide file tree
Showing 10 changed files with 165 additions and 108 deletions.
6 changes: 4 additions & 2 deletions allclasses-index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1923,12 +1923,14 @@ <h1 title="All Classes and Interfaces" class="title">All Classes and Interfaces<
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">&nbsp;</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="foundry/veil/api/client/render/vertex/VertexArray.html" title="class in foundry.veil.api.client.render.vertex">VertexArray</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">More genetic alternative to <code>VertexBuffer</code> that uses the latest available OpenGL version.</div>
<div class="block">More generic alternative to <code>VertexBuffer</code> that uses the latest available OpenGL version.</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab3"><a href="foundry/veil/api/client/render/vertex/VertexArray.DrawUsage.html" title="enum class in foundry.veil.api.client.render.vertex">VertexArray.DrawUsage</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab3">&nbsp;</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab3"><a href="foundry/veil/api/client/render/vertex/VertexArray.IndexType.html" title="enum class in foundry.veil.api.client.render.vertex">VertexArray.IndexType</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab3">&nbsp;</div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab3">
<div class="block">The type of GL indices that can be used.</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab1"><a href="foundry/veil/api/client/render/vertex/VertexArrayBuilder.html" title="interface in foundry.veil.api.client.render.vertex">VertexArrayBuilder</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab1">
<div class="block">Builder for modifying vertex buffer state.</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,15 @@
<p>Summary:</p>
<ul>
<li>Nested</li>
<li><a href="#field-summary">Field</a></li>
<li>Field</li>
<li><a href="#constructor-summary">Constr</a></li>
<li><a href="#method-summary">Method</a></li>
</ul>
</li>
<li>
<p>Detail:</p>
<ul>
<li><a href="#field-detail">Field</a></li>
<li>Field</li>
<li><a href="#constructor-detail">Constr</a></li>
<li><a href="#method-detail">Method</a></li>
</ul>
Expand All @@ -59,13 +59,13 @@
<ul class="sub-nav-list">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li><a href="#field-summary">Field</a>&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor-summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method-summary">Method</a></li>
</ul>
<ul class="sub-nav-list">
<li>Detail:&nbsp;</li>
<li><a href="#field-detail">Field</a>&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor-detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method-detail">Method</a></li>
</ul>
Expand Down Expand Up @@ -101,21 +101,6 @@ <h1 title="Class AdvancedFboRenderAttachment" class="title">Class AdvancedFboRen
</section>
<section class="summary">
<ul class="summary-list">
<!-- =========== FIELD SUMMARY =========== -->
<li>
<section class="field-summary" id="field-summary">
<h2>Field Summary</h2>
<div class="caption"><span>Fields</span></div>
<div class="summary-table three-column-summary">
<div class="table-header col-first">Modifier and Type</div>
<div class="table-header col-second">Field</div>
<div class="table-header col-last">Description</div>
<div class="col-first even-row-color"><code>static final int</code></div>
<div class="col-second even-row-color"><code><a href="#MAX_SAMPLES" class="member-name-link">MAX_SAMPLES</a></code></div>
<div class="col-last even-row-color">&nbsp;</div>
</div>
</section>
</li>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<li>
<section class="constructor-summary" id="constructor-summary">
Expand Down Expand Up @@ -214,20 +199,6 @@ <h3 id="methods-inherited-from-class-org.lwjgl.system.NativeResource">Methods in
</section>
<section class="details">
<ul class="details-list">
<!-- ============ FIELD DETAIL =========== -->
<li>
<section class="field-details" id="field-detail">
<h2>Field Details</h2>
<ul class="member-list">
<li>
<section class="detail" id="MAX_SAMPLES">
<h3>MAX_SAMPLES</h3>
<div class="member-signature"><span class="modifiers">public static final</span>&nbsp;<span class="return-type">int</span>&nbsp;<span class="element-name">MAX_SAMPLES</span></div>
</section>
</li>
</ul>
</section>
</li>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<li>
<section class="constructor-details" id="constructor-detail">
Expand All @@ -249,7 +220,7 @@ <h3>AdvancedFboRenderAttachment</h3>
<dd><code>width</code> - The width of the attachment</dd>
<dd><code>height</code> - The height of the attachment</dd>
<dd><code>samples</code> - The number of samples to have. It must be between<code>1</code>
and <a href="#MAX_SAMPLES"><code>MAX_SAMPLES</code></a></dd>
and <a href="../VeilRenderSystem.html#maxSamples()"><code>VeilRenderSystem.maxSamples()</code></a></dd>
</dl>
</section>
</li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ <h1 title="Enum Class VertexArray.IndexType" class="title">Enum Class VertexArra
<hr>
<div class="type-signature"><span class="modifiers">public static enum </span><span class="element-name type-name-label">VertexArray.IndexType</span>
<span class="extends-implements">extends <a href="https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/lang/Enum.html" title="class or interface in java.lang" class="external-link">Enum</a>&lt;<a href="VertexArray.IndexType.html" title="enum class in foundry.veil.api.client.render.vertex">VertexArray.IndexType</a>&gt;</span></div>
<div class="block">The type of GL indices that can be used.</div>
</section>
<section class="summary">
<ul class="summary-list">
Expand Down
Loading

0 comments on commit e0e545b

Please sign in to comment.