Blender V5.0
fallback_default_look.hh
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#pragma once
6
7#include "OCIO_look.hh"
8
9namespace blender::ocio {
10
11class FallbackDefaultLook : public Look {
12 public:
14 {
15 this->index = 0;
16 this->is_noop = true;
17 }
18
19 StringRefNull name() const override
20 {
21 return "None";
22 }
23
24 StringRefNull ui_name() const override
25 {
26 return name();
27 }
28
29 StringRefNull description() const override
30 {
31 return "";
32 }
33
34 StringRefNull view() const override
35 {
36 return "";
37 }
38
40 {
41 return "";
42 }
43};
44
45} // namespace blender::ocio
StringRefNull description() const override
StringRefNull name() const override
StringRefNull process_space() const override
StringRefNull view() const override
StringRefNull ui_name() const override