Fix missing update for blender_theme_as_c
script after BE removal.
Follow-up to blender/blender@bc80ef136e.
This commit is contained in:
parent
037121c261
commit
18635b604c
@ -37,13 +37,9 @@ C_SOURCE_HEADER = r'''/* SPDX-FileCopyrightText: 2018 Blender Authors
|
||||
|
||||
/* clang-format off */
|
||||
|
||||
#ifdef __LITTLE_ENDIAN__
|
||||
# define RGBA(c) {((c) >> 24) & 0xff, ((c) >> 16) & 0xff, ((c) >> 8) & 0xff, (c) & 0xff}
|
||||
# define RGB(c) {((c) >> 16) & 0xff, ((c) >> 8) & 0xff, (c) & 0xff}
|
||||
#else
|
||||
# define RGBA(c) {(c) & 0xff, ((c) >> 8) & 0xff, ((c) >> 16) & 0xff, ((c) >> 24) & 0xff}
|
||||
# define RGB(c) {(c) & 0xff, ((c) >> 8) & 0xff, ((c) >> 16) & 0xff}
|
||||
#endif
|
||||
/* NOTE: this is endianness-sensitive. */
|
||||
#define RGBA(c) {((c) >> 24) & 0xff, ((c) >> 16) & 0xff, ((c) >> 8) & 0xff, (c) & 0xff}
|
||||
#define RGB(c) {((c) >> 16) & 0xff, ((c) >> 8) & 0xff, (c) & 0xff}
|
||||
|
||||
'''
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user