Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/imbuf/intern/thumbs.c')
-rw-r--r--source/blender/imbuf/intern/thumbs.c105
1 files changed, 9 insertions, 96 deletions
diff --git a/source/blender/imbuf/intern/thumbs.c b/source/blender/imbuf/intern/thumbs.c
index 195a2e9fe9c..17b619d451c 100644
--- a/source/blender/imbuf/intern/thumbs.c
+++ b/source/blender/imbuf/intern/thumbs.c
@@ -151,111 +151,24 @@ typedef enum {
UNSAFE_SLASHES = 0x20, /* Allows all characters except for '/' and '%' */
} UnsafeCharacterSet;
+/* Don't loose comment alignment. */
+/* clang-format off */
static const unsigned char acceptable[96] = {
/* A table of the ASCII chars from space (32) to DEL (127) */
/* ! " # $ % & ' ( ) * + , - . / */
- 0x00,
- 0x3F,
- 0x20,
- 0x20,
- 0x28,
- 0x00,
- 0x2C,
- 0x3F,
- 0x3F,
- 0x3F,
- 0x3F,
- 0x2A,
- 0x28,
- 0x3F,
- 0x3F,
- 0x1C,
+ 0x00,0x3F,0x20,0x20,0x28,0x00,0x2C,0x3F,0x3F,0x3F,0x3F,0x2A,0x28,0x3F,0x3F,0x1C,
/* 0 1 2 3 4 5 6 7 8 9 : ; < = > ? */
- 0x3F,
- 0x3F,
- 0x3F,
- 0x3F,
- 0x3F,
- 0x3F,
- 0x3F,
- 0x3F,
- 0x3F,
- 0x3F,
- 0x38,
- 0x20,
- 0x20,
- 0x2C,
- 0x20,
- 0x20,
+ 0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x38,0x20,0x20,0x2C,0x20,0x20,
/* @ A B C D E F G H I J K L M N O */
- 0x38,
- 0x3F,
- 0x3F,
- 0x3F,
- 0x3F,
- 0x3F,
- 0x3F,
- 0x3F,
- 0x3F,
- 0x3F,
- 0x3F,
- 0x3F,
- 0x3F,
- 0x3F,
- 0x3F,
- 0x3F,
+ 0x38,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,
/* P Q R S T U V W X Y Z [ \ ] ^ _ */
- 0x3F,
- 0x3F,
- 0x3F,
- 0x3F,
- 0x3F,
- 0x3F,
- 0x3F,
- 0x3F,
- 0x3F,
- 0x3F,
- 0x3F,
- 0x20,
- 0x20,
- 0x20,
- 0x20,
- 0x3F,
+ 0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x20,0x20,0x20,0x20,0x3F,
/* ` a b c d e f g h i j k l m n o */
- 0x20,
- 0x3F,
- 0x3F,
- 0x3F,
- 0x3F,
- 0x3F,
- 0x3F,
- 0x3F,
- 0x3F,
- 0x3F,
- 0x3F,
- 0x3F,
- 0x3F,
- 0x3F,
- 0x3F,
- 0x3F,
+ 0x20,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,
/* p q r s t u v w x y z { | } ~ DEL */
- 0x3F,
- 0x3F,
- 0x3F,
- 0x3F,
- 0x3F,
- 0x3F,
- 0x3F,
- 0x3F,
- 0x3F,
- 0x3F,
- 0x3F,
- 0x20,
- 0x20,
- 0x20,
- 0x3F,
- 0x20,
+ 0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x20,0x20,0x20,0x3F,0x20,
};
+/* clang-format on */
static const char hex[17] = "0123456789abcdef";