Skip to content

Commit

Permalink
fix(VK/XR) invalid javadoc links
Browse files Browse the repository at this point in the history
  • Loading branch information
Spasi committed Aug 27, 2023
1 parent 213cd58 commit 711e06a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@
* <li>The {@link MNDXEGLEnable XR_MNDX_egl_enable} extension <b>must</b> be enabled prior to using {@link XrGraphicsBindingEGLMNDX}</li>
* <li>{@code type} <b>must</b> be {@link MNDXEGLEnable#XR_TYPE_GRAPHICS_BINDING_EGL_MNDX TYPE_GRAPHICS_BINDING_EGL_MNDX}</li>
* <li>{@code next} <b>must</b> be {@code NULL} or a valid pointer to the <a href="https://www.khronos.org/registry/OpenXR/specs/1.0/html/xrspec.html#valid-usage-for-structure-pointer-chains">next structure in a structure chain</a></li>
* <li>{@code getProcAddress} <b>must</b> be a valid {@link XrEglGetProcAddressMNDX} value</li>
* <li>{@code getProcAddress} <b>must</b> be a valid {@code PFN_xrEglGetProcAddressMNDX} value</li>
* <li>{@code display} <b>must</b> be a valid {@code EGLDisplay} value</li>
* <li>{@code config} <b>must</b> be a valid {@code EGLConfig} value</li>
* <li>{@code context} <b>must</b> be a valid {@code EGLContext} value</li>
* </ul>
*
* <h5>See Also</h5>
*
* <p>{@link XrEglGetProcAddressMNDX}, {@link XR10#xrCreateSession CreateSession}</p>
* <p>{@link XR10#xrCreateSession CreateSession}</p>
*
* <h3>Layout</h3>
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1101,14 +1101,14 @@ val XrGraphicsBindingEGLMNDX = struct(Module.OPENXR, "XrGraphicsBindingEGLMNDX")
<li>The {@link MNDXEGLEnable XR_MNDX_egl_enable} extension <b>must</b> be enabled prior to using ##XrGraphicsBindingEGLMNDX</li>
<li>{@code type} <b>must</b> be #TYPE_GRAPHICS_BINDING_EGL_MNDX</li>
<li>{@code next} <b>must</b> be {@code NULL} or a valid pointer to the <a href="https://www.khronos.org/registry/OpenXR/specs/1.0/html/xrspec.html\#valid-usage-for-structure-pointer-chains">next structure in a structure chain</a></li>
<li>{@code getProcAddress} <b>must</b> be a valid ##XrEglGetProcAddressMNDX value</li>
<li>{@code getProcAddress} <b>must</b> be a valid {@code PFN_xrEglGetProcAddressMNDX} value</li>
<li>{@code display} <b>must</b> be a valid {@code EGLDisplay} value</li>
<li>{@code config} <b>must</b> be a valid {@code EGLConfig} value</li>
<li>{@code context} <b>must</b> be a valid {@code EGLContext} value</li>
</ul>

<h5>See Also</h5>
##XrEglGetProcAddressMNDX, #CreateSession()
#CreateSession()
"""

Expression("#TYPE_GRAPHICS_BINDING_EGL_MNDX")..XrStructureType("type", "the {@code XrStructureType} of this structure.")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
*
* <h5>See Also</h5>
*
* <p>{@link VkGetInstanceProcAddrLUNARG}, {@link VkDirectDriverLoadingListLUNARG}</p>
* <p>{@link VkDirectDriverLoadingListLUNARG}</p>
*
* <h3>Layout</h3>
*
Expand Down Expand Up @@ -103,7 +103,7 @@ public VkDirectDriverLoadingInfoLUNARG(ByteBuffer container) {
/** reserved for future use. */
@NativeType("VkDirectDriverLoadingFlagsLUNARG")
public int flags() { return nflags(address()); }
/** a {@link VkGetInstanceProcAddrLUNARG} pointer to the driver {@link VK10#vkGetInstanceProcAddr GetInstanceProcAddr} function. */
/** a {@code PFN_vkGetInstanceProcAddrLUNARG} pointer to the driver {@link VK10#vkGetInstanceProcAddr GetInstanceProcAddr} function. */
@NativeType("PFN_vkGetInstanceProcAddrLUNARG")
public long pfnGetInstanceProcAddr() { return npfnGetInstanceProcAddr(address()); }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19392,13 +19392,13 @@ val VkDirectDriverLoadingInfoLUNARG = struct(Module.VULKAN, "VkDirectDriverLoadi
</ul>

<h5>See Also</h5>
##VkGetInstanceProcAddrLUNARG, ##VkDirectDriverLoadingListLUNARG
##VkDirectDriverLoadingListLUNARG
"""

Expression("#STRUCTURE_TYPE_DIRECT_DRIVER_LOADING_INFO_LUNARG")..VkStructureType("sType", "a {@code VkStructureType} value identifying this structure.")
nullable..opaque_p("pNext", "{@code NULL} or a pointer to a structure extending this structure.")
VkDirectDriverLoadingFlagsLUNARG("flags", "reserved for future use.")
PFN_vkGetInstanceProcAddrLUNARG("pfnGetInstanceProcAddr", "a ##VkGetInstanceProcAddrLUNARG pointer to the driver #GetInstanceProcAddr() function.")
PFN_vkGetInstanceProcAddrLUNARG("pfnGetInstanceProcAddr", "a {@code PFN_vkGetInstanceProcAddrLUNARG} pointer to the driver #GetInstanceProcAddr() function.")
}

val VkDirectDriverLoadingListLUNARG = struct(Module.VULKAN, "VkDirectDriverLoadingListLUNARG") {
Expand Down

0 comments on commit 711e06a

Please sign in to comment.