mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-07-09 16:18:10 +00:00
fixup! feat(core): refactor display drivers
This commit is contained in:
parent
74dc53c1bf
commit
f55c42b940
@ -318,14 +318,12 @@ def cargo_build():
|
||||
features.append('new_rendering')
|
||||
if TREZOR_MODEL in ('T',):
|
||||
features.append('display_rgb565')
|
||||
features.append('ui_antialiasing')
|
||||
elif TREZOR_MODEL in ('R', '1',):
|
||||
features.append('display_mono')
|
||||
features.append('xframebuffer')
|
||||
elif TREZOR_MODEL in ('T3T1',):
|
||||
features.append('display_rgb565')
|
||||
features.append('xframebuffer')
|
||||
features.append('ui_antialiasing')
|
||||
|
||||
if TREZOR_MODEL in ('T', 'T3T1'):
|
||||
features.append('touch')
|
||||
|
@ -769,7 +769,6 @@ def cargo_build():
|
||||
features.append('debug')
|
||||
features.append('ui_debug')
|
||||
if TREZOR_MODEL in ('T', 'T3T1', 'DISC1', 'DISC2'):
|
||||
features.append('ui_antialiasing')
|
||||
features.append('ui_blurring')
|
||||
features.append('ui_jpeg_decoder')
|
||||
|
||||
|
@ -875,7 +875,6 @@ def cargo_build():
|
||||
if TREZOR_MODEL in ('T', 'T3T1'):
|
||||
features.append('touch')
|
||||
features.append('sd_card')
|
||||
features.append('ui_antialiasing')
|
||||
features.append('ui_blurring')
|
||||
features.append('ui_jpeg_decoder')
|
||||
if TREZOR_MODEL in ('R', '1'):
|
||||
|
@ -17,8 +17,8 @@ ui = []
|
||||
dma2d = []
|
||||
xframebuffer = []
|
||||
display_mono = []
|
||||
display_rgb565 = []
|
||||
display_rgba8888 = []
|
||||
display_rgb565 = ["ui_antialiasing"]
|
||||
display_rgba8888 = ["ui_antialiasing"]
|
||||
framebuffer = []
|
||||
framebuffer32bit = []
|
||||
ui_debug = []
|
||||
|
Loading…
Reference in New Issue
Block a user