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

Update generated code to reflect recent xml updates. #218

Merged
merged 1 commit into from
May 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions loader/icd_dispatch_generated.c
Original file line number Diff line number Diff line change
Expand Up @@ -6361,7 +6361,7 @@ CL_API_ENTRY cl_mem CL_API_CALL clCreateFromGLBuffer(
cl_context context,
cl_mem_flags flags,
cl_GLuint bufobj,
int* errcode_ret)
cl_int* errcode_ret)
{
#if defined(CL_ENABLE_LAYERS)
if (khrFirstLayer)
Expand All @@ -6384,7 +6384,7 @@ static cl_mem CL_API_CALL clCreateFromGLBuffer_disp(
cl_context context,
cl_mem_flags flags,
cl_GLuint bufobj,
int* errcode_ret)
cl_int* errcode_ret)
{
KHR_ICD_VALIDATE_HANDLE_RETURN_HANDLE(context, CL_INVALID_CONTEXT);
KHR_ICD_VALIDATE_POINTER_RETURN_HANDLE(context->dispatch->clCreateFromGLBuffer);
Expand Down
2 changes: 1 addition & 1 deletion test/layer/icd_print_layer_generated.c
Original file line number Diff line number Diff line change
Expand Up @@ -2379,7 +2379,7 @@ static cl_mem CL_API_CALL clCreateFromGLBuffer_wrap(
cl_context context,
cl_mem_flags flags,
cl_GLuint bufobj,
int* errcode_ret) CL_API_SUFFIX__VERSION_1_0
cl_int* errcode_ret) CL_API_SUFFIX__VERSION_1_0
{
printf("clCreateFromGLBuffer\n");
return tdispatch->clCreateFromGLBuffer(
Expand Down