When using clangd or running clang-tidy on headers there are currently many errors. These are noisy in IDEs, make auto fixes impossible, and break features like code completion, refactoring and navigation. This makes source/blender headers work by themselves, which is generally the goal anyway. But #includes and forward declarations were often incomplete. * Add #includes and forward declarations * Add IWYU pragma: export in a few places * Remove some unused #includes (but there are many more) * Tweak ShaderCreateInfo macros to work better with clangd Some types of headers still have errors, these could be fixed or worked around with more investigation. Mostly preprocessor template headers like NOD_static_types.h. Note that that disabling WITH_UNITY_BUILD is required for clangd to work properly, otherwise compile_commands.json does not contain the information for the relevant source files. For more details see the developer docs: https://developer.blender.org/docs/handbook/tooling/clangd/ Pull Request: https://projects.blender.org/blender/blender/pulls/132608
79 lines
2.3 KiB
C++
79 lines
2.3 KiB
C++
/* SPDX-FileCopyrightText: 2023 Blender Authors
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
/**
|
|
* \file
|
|
* \ingroup pygen
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <Python.h>
|
|
|
|
struct EnumPropertyItem;
|
|
|
|
/**
|
|
* Convert all items into a single comma separated string.
|
|
* Use for creating useful error messages.
|
|
*/
|
|
char *pyrna_enum_repr(const EnumPropertyItem *item);
|
|
|
|
/**
|
|
* Same as #RNA_enum_value_from_id, but raises an exception.
|
|
*/
|
|
int pyrna_enum_value_from_id(const EnumPropertyItem *item,
|
|
const char *identifier,
|
|
int *r_value,
|
|
const char *error_prefix);
|
|
|
|
/**
|
|
* Takes a set of strings and map it to and array of booleans.
|
|
*
|
|
* Useful when the values aren't flags.
|
|
*
|
|
* \param type_convert_sign: Maps signed to unsigned range,
|
|
* needed when we want to use the full range of a signed short/char.
|
|
*/
|
|
unsigned int *pyrna_enum_bitmap_from_set(const EnumPropertyItem *items,
|
|
PyObject *value,
|
|
int type_size,
|
|
bool type_convert_sign,
|
|
int bitmap_size,
|
|
const char *error_prefix);
|
|
|
|
/**
|
|
* 'value' _must_ be a set type, error check before calling.
|
|
*/
|
|
int pyrna_enum_bitfield_from_set(const EnumPropertyItem *items,
|
|
PyObject *value,
|
|
int *r_value,
|
|
const char *error_prefix);
|
|
|
|
PyObject *pyrna_enum_bitfield_as_set(const EnumPropertyItem *items, int value);
|
|
|
|
/**
|
|
* Data for #pyrna_enum_value_parse_string & #pyrna_enum_bitfield_parse_set parsing utilities.
|
|
* Use with #PyArg_ParseTuple's `O&` formatting.
|
|
*/
|
|
struct BPy_EnumProperty_Parse {
|
|
const EnumPropertyItem *items;
|
|
/**
|
|
* Set when the value was successfully parsed.
|
|
* Useful if the input ever needs to be included in an error message.
|
|
* (if the value is not supported under certain conditions).
|
|
*/
|
|
PyObject *value_orig;
|
|
|
|
int value;
|
|
bool is_set;
|
|
};
|
|
/**
|
|
* Use with #PyArg_ParseTuple's `O&` formatting.
|
|
*/
|
|
int pyrna_enum_value_parse_string(PyObject *o, void *p);
|
|
/**
|
|
* Use with #PyArg_ParseTuple's `O&` formatting.
|
|
*/
|
|
int pyrna_enum_bitfield_parse_set(PyObject *o, void *p);
|