Blender V5.0
version.cc
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2025 Blender Authors
2 *
3 * SPDX-License-Identifier: GPL-2.0-or-later */
4
5#include "OCIO_version.hh"
6
7#include "opencolorio.hh"
8
9namespace blender::ocio {
10
12{
13#ifdef WITH_OPENCOLORIO
14 const int version_hex = OCIO_NAMESPACE::GetVersionHex();
15#else
16 const int version_hex = 0;
17#endif
18 return {version_hex >> 24, (version_hex >> 16) & 0xff, (version_hex >> 8) & 0xff};
19}
20
21} // namespace blender::ocio
Version get_version()
Definition version.cc:11