openexr_debug.h 481 B

1234567891011121314151617181920212223242526
  1. /*
  2. ** SPDX-License-Identifier: BSD-3-Clause
  3. ** Copyright Contributors to the OpenEXR Project.
  4. */
  5. #ifndef OPENEXR_DEBUG_H
  6. #define OPENEXR_DEBUG_H
  7. #include "openexr_context.h"
  8. #ifdef __cplusplus
  9. extern "C" {
  10. #endif
  11. /** @file */
  12. /** Debug function: print to stdout the parts and attributes of the
  13. * context @p c
  14. */
  15. EXR_EXPORT exr_result_t exr_print_context_info( exr_const_context_t c, int verbose );
  16. #ifdef __cplusplus
  17. } /* extern "C" */
  18. #endif
  19. #endif /* OPENEXR_DEBUG_H */