Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
flow3r firmware
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
flow3r
flow3r firmware
Merge requests
!32
Recovery: list images
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Recovery: list images
schneider/recovery
into
main
Overview
26
Commits
8
Pipelines
7
Changes
5
Merged
schneider
requested to merge
schneider/recovery
into
main
1 year ago
Overview
26
Commits
8
Pipelines
7
Changes
5
Expand
0
0
Merge request reports
Compare
main
version 6
773b8a76
1 year ago
version 5
0b6c7439
1 year ago
version 4
770f583f
1 year ago
version 3
bc8bfd62
1 year ago
version 2
5daafbdf
1 year ago
version 1
34c56156
1 year ago
main (base)
and
version 4
latest version
dba19650
8 commits,
1 year ago
version 6
773b8a76
14 commits,
1 year ago
version 5
0b6c7439
12 commits,
1 year ago
version 4
770f583f
6 commits,
1 year ago
version 3
bc8bfd62
5 commits,
1 year ago
version 2
5daafbdf
4 commits,
1 year ago
version 1
34c56156
3 commits,
1 year ago
5 files
+
148
−
12
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
Search (e.g. *.vue) (Ctrl+P)
components/ctx/ctx_config.h
+
16
−
4
Options
@@ -26,11 +26,11 @@
#define CTX_ENABLE_RGB565 1
#define CTX_ENABLE_RGB565_BYTESWAPPED 1
#define CTX_ENABLE_CBRLE 0
#define CTX_ENABLE_CM 0
#define CTX_BITPACK_PACKER 0
#define CTX_COMPOSITING_GROUPS 0
#define CTX_RENDERSTREAM_STATIC 0
#define CTX_GRADIENT_CACHE 1
#define CTX_ENABLE_CLIP 1
#define CTX_MIN_JOURNAL_SIZE 512 // grows dynamically
#define CTX_MIN_EDGE_LIST_SIZE 512 // is also max and limits complexity
// of paths that can be filled
@@ -48,17 +48,29 @@
#define CTX_ENABLE_SHADOW_BLUR 0
#define CTX_FONTS_FROM_FILE 0
#define CTX_MAX_KEYDB 16
#define CTX_FRAGMENT_SPECIALIZE 1
#define CTX_FAST_FILL_RECT 1
#define CTX_MAX_TEXTURES 1
#define CTX_PARSER_MAXLEN 512
#define CTX_PARSER_FIXED_TEMP 1
#define CTX_CURRENT_PATH 1
#define CTX_BLENDING_AND_COMPOSITING 1
#define CTX_STRINGPOOL_SIZE 256
#define CTX_AUDIO 0
#define CTX_CLIENTS 0
#if defined(CONFIG_FLOW3R_CTX_FLAVOUR_FULL)
#define CTX_ENABLE_CLIP 1
#define CTX_FRAGMENT_SPECIALIZE 1
#define CTX_FAST_FILL_RECT 1
#define CTX_BLENDING_AND_COMPOSITING 1
#else
#define CTX_ENABLE_CLIP 0
#define CTX_FRAGMENT_SPECIALIZE 0
#define CTX_FAST_FILL_RECT 0
#define CTX_BLENDING_AND_COMPOSITING 0
#define CTX_FORCE_INLINES 0
#define CTX_INLINED_GRADIENTS 0
#endif
#define CTX_RAW_KB_EVENTS 0
#define CTX_MATH 0
#define CTX_TERMINAL_EVENTS 0 // gets rid of posix bits and bobs
Loading