Skip to content

Instantly share code, notes, and snippets.

View jenatali's full-sized avatar

Jesse Natalie jenatali

  • Microsoft
View GitHub Profile
; SPIR-V
; Version: 1.0
; Generator: Khronos; 17
; Bound: 41
; Schema: 0
OpCapability Addresses
OpCapability Kernel
OpCapability Int64
OpCapability ImageBasic
%1 = OpExtInstImport "OpenCL.std"
@jenatali
jenatali / both_lib_source.c
Last active September 9, 2021 01:14
Meson VS build repro
extern int static_lib_function(void);
int both_lib_function(void)
{
return static_lib_function();
}