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

[XML] Fix type defined by cl_intel_driver_diagnostics #1260

Merged
Merged
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
8 changes: 5 additions & 3 deletions xml/cl.xml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ server's OpenCL/api-docs repository.
<type category="define">typedef struct _cl_accelerator_intel* <name>cl_accelerator_intel</name>;</type>
<type category="define">typedef <type>cl_uint</type> <name>cl_accelerator_type_intel</name>;</type>
<type category="define">typedef <type>cl_uint</type> <name>cl_accelerator_info_intel</name>;</type>
<type category="define">typedef <type>cl_uint</type> <name>cl_diagnostics_verbose_level</name>;</type>
<type category="define">typedef <type>cl_bitfield</type> <name>cl_diagnostic_verbose_level_intel</name>;</type>
<type category="define">typedef <type>cl_uint</type> <name>cl_va_api_device_source_intel</name>;</type>
<type category="define">typedef <type>cl_uint</type> <name>cl_va_api_device_set_intel</name>;</type>
<type category="define">typedef struct __GLsync * <name>cl_GLsync</name>;</type>
Expand Down Expand Up @@ -991,7 +991,7 @@ server's OpenCL/api-docs repository.
<unused start="0x4" end="0x80000000"/>
</enums>

<enums name="cl_intel_driver_diagnostics" vendor="Intel" type="bitmask">
<enums name="cl_diagnostic_verbose_level_intel" comment="From cl_intel_driver_diagnostics" vendor="Intel" type="bitmask">
<enum value="0xff" name="CL_CONTEXT_DIAGNOSTICS_LEVEL_ALL_INTEL"/>
<enum bitpos="0" name="CL_CONTEXT_DIAGNOSTICS_LEVEL_GOOD_INTEL"/>
<enum bitpos="1" name="CL_CONTEXT_DIAGNOSTICS_LEVEL_BAD_INTEL"/>
Expand Down Expand Up @@ -6273,10 +6273,12 @@ server's OpenCL/api-docs repository.
</extension>
<extension name="cl_intel_driver_diagnostics" revision="0.0.0" supported="opencl">
<require>
<type name="cl_diagnostics_verbose_level"/>
<type name="cl_diagnostic_verbose_level_intel"/>
</require>
<require comment="cl_context_properties">
<enum name="CL_CONTEXT_SHOW_DIAGNOSTICS_INTEL"/>
</require>
<require comment="cl_diagnostic_verbose_level_intel">
<enum name="CL_CONTEXT_DIAGNOSTICS_LEVEL_ALL_INTEL"/>
<enum name="CL_CONTEXT_DIAGNOSTICS_LEVEL_GOOD_INTEL"/>
<enum name="CL_CONTEXT_DIAGNOSTICS_LEVEL_BAD_INTEL"/>
Expand Down