Skip to content
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
6 changes: 5 additions & 1 deletion scripts/call_all.c.mako
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ defaultValueForType = {
'cl_dx9_media_adapter_set_khr' : 'CL_ALL_DEVICES_FOR_DX9_MEDIA_ADAPTER_KHR',
'cl_dx9_media_adapter_type_khr' : 'CL_ADAPTER_D3D9_KHR',
'cl_external_semaphore_handle_type_khr' : '0',
'cl_icdl_info' : 'CL_ICDL_OCL_VERSION',
'cl_image_pitch_info_qcom' : 'CL_IMAGE_ROW_ALIGNMENT_QCOM',
'cl_image_requirements_info_ext' : 'CL_IMAGE_REQUIREMENTS_SIZE_EXT',
'cl_kernel_exec_info_arm' : 'CL_KERNEL_EXEC_INFO_SVM_PTRS_ARM',
Expand Down Expand Up @@ -158,9 +159,12 @@ def getCallArgs(params):
#include <CL/cl_va_api_media_sharing_intel.h>
#endif

// Some headers to not include function prototypes for the DX sharing extensions.
// Some headers do not include function prototypes for the DX sharing extensions.
#include "dx_sharing_prototypes.h"

// Some headers do not include function prototypes for the loader info extension.
#include "loader_info_prototypes.h"

void call_all(void)
{
%for extension in sorted(spec.findall('extensions/extension'), key=getExtensionSortKey):
Expand Down
Loading