openexr_std_attr.h 897 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /*
  2. ** SPDX-License-Identifier: BSD-3-Clause
  3. ** Copyright Contributors to the OpenEXR Project.
  4. */
  5. #ifndef OPENEXR_CORE_STD_ATTR_H
  6. #define OPENEXR_CORE_STD_ATTR_H
  7. #include "openexr_attr.h"
  8. #ifdef __cplusplus
  9. extern "C" {
  10. #endif
  11. /** @file */
  12. /**
  13. * @defgroup Standard attributes
  14. * @brief These are a group of attributes which are not strictly required,
  15. * but have common definitions and should be preferred for representing
  16. * the information they describe.
  17. * @{
  18. */
  19. /*
  20. chromaticities
  21. whiteLuminance
  22. adoptedNeutral
  23. renderingTransform
  24. lookModTransform
  25. xDensity
  26. owner
  27. comments
  28. capDate
  29. utcOffset
  30. longitude
  31. latitude
  32. altitude
  33. focus
  34. expTime
  35. aperture
  36. isoSpeed
  37. envmap
  38. keyCode
  39. timeCode
  40. wrapmodes
  41. framesPerSecond
  42. multiView
  43. worldToCamera
  44. worldToNDC
  45. deepImageState
  46. originalDataWindow
  47. dwaCompressionLevel
  48. */
  49. /** @} */
  50. #ifdef __cplusplus
  51. } /* extern "C" */
  52. #endif
  53. #endif /* OPENEXR_CORE_STD_ATTR_H */