Skip to content
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

Use shared GitHub Actions #7

Merged
merged 2 commits into from
Feb 7, 2022
Merged

Use shared GitHub Actions #7

merged 2 commits into from
Feb 7, 2022

Conversation

zmughal
Copy link
Member

@zmughal zmughal commented Feb 2, 2022

Connects with Perl-GPU/devops#1.

@zmughal zmughal force-pushed the gha-shared-actions branch 2 times, most recently from d754046 to f1c301b Compare February 6, 2022 05:40
The current build fails to compile due to mismatching prototypes with
`interface=AGL` (the default), but works with `interface=FREEGLUT`.

For example, `interface=AGL` requires these changes to
`include/GL/glext.h` in order to compile:

```diff
-GLAPI void APIENTRY glTexParameterIivEXT (GLenum target, GLenum pname, const GLint *params);
-GLAPI void APIENTRY glTexParameterIuivEXT (GLenum target, GLenum pname, const GLuint *params);
+GLAPI void APIENTRY glTexParameterIivEXT (GLenum target, GLenum pname, GLint *params);
+GLAPI void APIENTRY glTexParameterIuivEXT (GLenum target, GLenum pname, GLuint *params);
```

that is, the last parameter is not `const` in the headers from Apple.
@zmughal zmughal marked this pull request as ready for review February 7, 2022 21:58
@zmughal zmughal merged commit 4d5ef90 into master Feb 7, 2022
@zmughal zmughal deleted the gha-shared-actions branch February 7, 2022 22:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants