-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
registry: spec: Update XR_MNDX_egl_enable's version to 2 #159
registry: spec: Update XR_MNDX_egl_enable's version to 2 #159
Conversation
53a268b
to
5f381ba
Compare
IMO, this updating is necessary, but I don't know whether you need it. cc @rpavlik for reviewing. |
5f381ba
to
747a735
Compare
An issue (number 2157) has been filed to correspond to this pull request in the internal Khronos GitLab (Khronos members only: KHR:openxr/openxr#2157 ), to facilitate working group processes. This GitHub pull request will continue to be the main site of discussion. |
Friendly ping @rpavlik for reviewing. |
Thanks, yeah, that is probably a good idea. |
747a735
to
e842f5a
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, I just made a few minor tweaks
From 1.0.29, XR_MNDX_egl_enable changed the type of getProcAddress from PFNEGLGETPROCADDRESSPROC to new added PFN_xrEglGetProcAddressMNDX. When I tried to bump to this version for Monado, it caused compiling error for Android NDK armeabi-v7a because new function type has extra __attribute__ definition. From this experience, the 1.0.29's change changed the extension APIs, and we might need to bump the version of this extension to 2 to let Runtime and apps know it. doc: Add documentation fragment Signed-off-by: utzcoz <[email protected]>
e842f5a
to
d23492a
Compare
Arg, I merged to the wrong branch. Pretend it didn't happen, and that I merged to staging as I should. 🤦♀️ |
@rpavlik No problem. Thanks for your reviewing and merging it. |
From 1.0.29, XR_MNDX_egl_enable changed the type of getProcAddress from PFNEGLGETPROCADDRESSPROC to new added PFN_xrEglGetProcAddressMNDX. When I tried to bump to this version for Monado, it caused compiling error for Android NDK armeabi-v7a because new function type has extra attribute definition. From this experience, the 1.0.29's change changed the extension APIs, and we might need to bump the version of this extension to 2 to let Runtime and apps know it.