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

Invalid CL_KERNEL_ARG_ADDRESS_* qualifiers #165

Closed
mflament opened this issue Feb 19, 2022 · 1 comment
Closed

Invalid CL_KERNEL_ARG_ADDRESS_* qualifiers #165

mflament opened this issue Feb 19, 2022 · 1 comment

Comments

@mflament
Copy link

From opencl header :

/* cl_kernel_arg_address_qualifier */
#define CL_KERNEL_ARG_ADDRESS_GLOBAL                0x119B
#define CL_KERNEL_ARG_ADDRESS_LOCAL                 0x119C
#define CL_KERNEL_ARG_ADDRESS_CONSTANT              0x119D
#define CL_KERNEL_ARG_ADDRESS_PRIVATE               0x119E

In master

    /** cl_kernel_arg_address_qualifier */
    public static final int
        CL_KERNEL_ARG_ADDRESS_GLOBAL   = 0x119A,
        CL_KERNEL_ARG_ADDRESS_LOCAL    = 0x119B,
        CL_KERNEL_ARG_ADDRESS_CONSTANT = 0x119C,
        CL_KERNEL_ARG_ADDRESS_PRIVATE  = 0x119D;
@mflament
Copy link
Author

Wrong repo. Fixed in lwjgl3

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

No branches or pull requests

1 participant