exr_debug.odin 297 B

123456789101112
  1. package vendor_openexr
  2. when ODIN_OS == .Windows {
  3. foreign import lib "OpenEXRCore-3_1.lib"
  4. } else {
  5. foreign import lib "system:OpenEXRCore-3_1"
  6. }
  7. @(link_prefix="exr_", default_calling_convention="c")
  8. foreign lib {
  9. print_context_info :: proc(c: const_context_t, verbose: b32) -> result_t ---
  10. }