1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-22 08:08:10 +00:00

Merge pull request #2113 from matrix/opencl_header_update

update OpenCL-Headers deps
This commit is contained in:
Jens Steube 2019-07-29 15:34:12 +02:00 committed by GitHub
commit e896d78b05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -137,19 +137,23 @@ typedef struct _cl_image_desc {
size_t image_slice_pitch; size_t image_slice_pitch;
cl_uint num_mip_levels; cl_uint num_mip_levels;
cl_uint num_samples; cl_uint num_samples;
#ifdef CL_VERSION_2_0
#ifdef __GNUC__ #ifdef __GNUC__
__extension__ /* Prevents warnings about anonymous union in -pedantic builds */ __extension__ /* Prevents warnings about anonymous union in -pedantic builds */
#endif #endif
#ifdef _MSC_VER #ifdef _MSC_VER
#pragma warning( push ) #pragma warning( push )
#pragma warning( disable : 4201 ) /* Prevents warning about nameless struct/union in /W4 /Za builds */ #pragma warning( disable : 4201 ) /* Prevents warning about nameless struct/union in /W4 /Za builds */
#endif #endif
union { union {
#endif
cl_mem buffer; cl_mem buffer;
#ifdef CL_VERSION_2_0
cl_mem mem_object; cl_mem mem_object;
}; };
#ifdef _MSC_VER #ifdef _MSC_VER
#pragma warning( pop ) #pragma warning( pop )
#endif
#endif #endif
} cl_image_desc; } cl_image_desc;