Skip to content

Commit

Permalink
Try again
Browse files Browse the repository at this point in the history
  • Loading branch information
The Judge committed Nov 24, 2024
1 parent 19d4c36 commit 53dceeb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
import org.lwjgl.*;
import org.lwjgl.system.*;

import static org.lwjgl.openxr.KHRAndroidCreateInstance.*;
import static org.lwjgl.system.Checks.*;
import static org.lwjgl.system.MemoryUtil.*;
import static org.lwjgl.system.MemoryStack.*;
Expand Down Expand Up @@ -108,7 +109,7 @@ public XrInstanceCreateInfoAndroidKHR(ByteBuffer container) {
/** Sets the specified value to the {@link #type} field. */
public XrInstanceCreateInfoAndroidKHR type(@NativeType("XrStructureType") int value) { ntype(address(), value); return this; }
/** Sets the default value to the {@link #type} field. */
public XrInstanceCreateInfoAndroidKHR type$Default() { return type(TYPE_INSTANCE_CREATE_INFO_ANDROID_KHR); }
public XrInstanceCreateInfoAndroidKHR type$Default() { return type(XR_TYPE_INSTANCE_CREATE_INFO_ANDROID_KHR); }
/** Sets the specified value to the {@link #next} field. */
public XrInstanceCreateInfoAndroidKHR next(@NativeType("void const *") long value) { nnext(address(), value); return this; }
/** Sets the specified value to the {@link #applicationVM} field. */
Expand Down Expand Up @@ -338,7 +339,7 @@ protected XrInstanceCreateInfoAndroidKHR getElementFactory() {
/** Sets the specified value to the {@link XrInstanceCreateInfoAndroidKHR#type} field. */
public XrInstanceCreateInfoAndroidKHR.Buffer type(@NativeType("XrStructureType") int value) { XrInstanceCreateInfoAndroidKHR.ntype(address(), value); return this; }
/** Sets the default value to the {@link XrInstanceCreateInfoAndroidKHR#type} field. */
public XrInstanceCreateInfoAndroidKHR.Buffer type$Default() { return type(TYPE_INSTANCE_CREATE_INFO_ANDROID_KHR); }
public XrInstanceCreateInfoAndroidKHR.Buffer type$Default() { return type(XR_TYPE_INSTANCE_CREATE_INFO_ANDROID_KHR); }
/** Sets the specified value to the {@link XrInstanceCreateInfoAndroidKHR#next} field. */
public XrInstanceCreateInfoAndroidKHR.Buffer next(@NativeType("void const *") long value) { XrInstanceCreateInfoAndroidKHR.nnext(address(), value); return this; }
/** Sets the specified value to the {@link XrInstanceCreateInfoAndroidKHR#applicationVM} field. */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
import org.lwjgl.*;
import org.lwjgl.system.*;

import static org.lwjgl.openxr.KHRLoaderInitAndroid.*;
import static org.lwjgl.system.Checks.*;
import static org.lwjgl.system.MemoryUtil.*;
import static org.lwjgl.system.MemoryStack.*;
Expand Down Expand Up @@ -104,7 +105,7 @@ public XrLoaderInitInfoAndroidKHR(ByteBuffer container) {
/** Sets the specified value to the {@link #type} field. */
public XrLoaderInitInfoAndroidKHR type(@NativeType("XrStructureType") int value) { ntype(address(), value); return this; }
/** Sets the default value to the {@link #type} field. */
public XrLoaderInitInfoAndroidKHR type$Default() { return type(TYPE_LOADER_INIT_INFO_ANDROID_KHR); }
public XrLoaderInitInfoAndroidKHR type$Default() { return type(XR_TYPE_LOADER_INIT_INFO_ANDROID_KHR); }
/** Sets the specified value to the {@link #next} field. */
public XrLoaderInitInfoAndroidKHR next(@NativeType("void const *") long value) { nnext(address(), value); return this; }
/** Sets the specified value to the {@link #applicationVM} field. */
Expand Down Expand Up @@ -344,7 +345,7 @@ protected XrLoaderInitInfoAndroidKHR getElementFactory() {
/** Sets the specified value to the {@link XrLoaderInitInfoAndroidKHR#type} field. */
public XrLoaderInitInfoAndroidKHR.Buffer type(@NativeType("XrStructureType") int value) { XrLoaderInitInfoAndroidKHR.ntype(address(), value); return this; }
/** Sets the default value to the {@link XrLoaderInitInfoAndroidKHR#type} field. */
public XrLoaderInitInfoAndroidKHR.Buffer type$Default() { return type(TYPE_LOADER_INIT_INFO_ANDROID_KHR); }
public XrLoaderInitInfoAndroidKHR.Buffer type$Default() { return type(XR_TYPE_LOADER_INIT_INFO_ANDROID_KHR); }
/** Sets the specified value to the {@link XrLoaderInitInfoAndroidKHR#next} field. */
public XrLoaderInitInfoAndroidKHR.Buffer next(@NativeType("void const *") long value) { XrLoaderInitInfoAndroidKHR.nnext(address(), value); return this; }
/** Sets the specified value to the {@link XrLoaderInitInfoAndroidKHR#applicationVM} field. */
Expand Down

0 comments on commit 53dceeb

Please sign in to comment.