Skip to content

Instantly share code, notes, and snippets.

@fredemmott
Last active September 21, 2023 14:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fredemmott/ffd6a84893a2cecd38b056fc982268bd to your computer and use it in GitHub Desktop.
Save fredemmott/ffd6a84893a2cecd38b056fc982268bd to your computer and use it in GitHub Desktop.
diff --git a/gen-v1.0.29/include/OXRTracing/forward_declarations.gen.hpp b/gen-v1.0.30/include/OXRTracing/forward_declarations.gen.hpp
index dbbb744..eb8cc33 100644
--- a/gen-v1.0.29/include/OXRTracing/forward_declarations.gen.hpp
+++ b/gen-v1.0.30/include/OXRTracing/forward_declarations.gen.hpp
@@ -1532,7 +1532,7 @@ XrResult XRAPI_CALL OXRTracing_xrSendVirtualKeyboardInputMETA(
XrVirtualKeyboardMETA keyboard, const XrVirtualKeyboardInputInfoMETA* info,
XrPosef* interactorRootPose);
XrResult XRAPI_CALL OXRTracing_xrSetColorSpaceFB(
- XrSession session, const XrColorSpaceFB colorspace);
+ XrSession session, const XrColorSpaceFB colorSpace);
XrResult XRAPI_CALL OXRTracing_xrSetDigitalLensControlALMALENCE(
XrSession session, const XrDigitalLensControlALMALENCE* digitalLensControl);
XrResult XRAPI_CALL OXRTracing_xrSetEnvironmentDepthEstimationVARJO(
@@ -1549,7 +1549,7 @@ XrResult XRAPI_CALL OXRTracing_xrSetInputDeviceStateVector2fEXT(
XrSession session, XrPath topLevelPath, XrPath inputSourcePath,
XrVector2f state);
XrResult XRAPI_CALL OXRTracing_xrSetMarkerTrackingPredictionVARJO(
- XrSession session, uint64_t markerId, XrBool32 enabled);
+ XrSession session, uint64_t markerId, XrBool32 enable);
XrResult XRAPI_CALL OXRTracing_xrSetMarkerTrackingTimeoutVARJO(
XrSession session, uint64_t markerId, XrDuration timeout);
XrResult XRAPI_CALL OXRTracing_xrSetMarkerTrackingVARJO(
diff --git a/gen-v1.0.29/src/layer.gen.0.cpp b/gen-v1.0.30/src/layer.gen.0.cpp
index 471981a..195b4da 100644
--- a/gen-v1.0.29/src/layer.gen.0.cpp
+++ b/gen-v1.0.30/src/layer.gen.0.cpp
@@ -4036,15 +4036,15 @@ XrResult XRAPI_CALL OXRTracing_xrSendVirtualKeyboardInputMETA(
}
XrResult XRAPI_CALL OXRTracing_xrSetColorSpaceFB(
- XrSession session, const XrColorSpaceFB colorspace)
+ XrSession session, const XrColorSpaceFB colorSpace)
{
TraceLoggingActivity<gTraceProvider> localActivity;
TraceLoggingWriteStart(localActivity, "xrSetColorSpaceFB",
OXRTL_ARGS_XrSession(session, "session"),
- OXRTL_ARGS_XrColorSpaceFB(colorspace, "colorspace"));
+ OXRTL_ARGS_XrColorSpaceFB(colorSpace, "colorSpace"));
- const auto ret = next_xrSetColorSpaceFB(session, colorspace);
+ const auto ret = next_xrSetColorSpaceFB(session, colorSpace);
TraceLoggingWriteStop(localActivity, "xrSetColorSpaceFB",
OXRTL_ARGS_XrResult(ret, "XrResult"));
@@ -4194,17 +4194,17 @@ XrResult XRAPI_CALL OXRTracing_xrSetInputDeviceStateVector2fEXT(
}
XrResult XRAPI_CALL OXRTracing_xrSetMarkerTrackingPredictionVARJO(
- XrSession session, uint64_t markerId, XrBool32 enabled)
+ XrSession session, uint64_t markerId, XrBool32 enable)
{
TraceLoggingActivity<gTraceProvider> localActivity;
TraceLoggingWriteStart(localActivity, "xrSetMarkerTrackingPredictionVARJO",
OXRTL_ARGS_XrSession(session, "session"),
OXRTL_ARGS_uint64_t(markerId, "markerId"),
- OXRTL_ARGS_XrBool32(enabled, "enabled"));
+ OXRTL_ARGS_XrBool32(enable, "enable"));
const auto ret
- = next_xrSetMarkerTrackingPredictionVARJO(session, markerId, enabled);
+ = next_xrSetMarkerTrackingPredictionVARJO(session, markerId, enable);
TraceLoggingWriteStop(localActivity, "xrSetMarkerTrackingPredictionVARJO",
OXRTL_ARGS_XrResult(ret, "XrResult"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment