- Status Closed
- Percent Complete
- Task Type Bugs
- Category User Interface
- Assigned To No-one
- Operating System Gigabeat F/X
- Severity Low
- Priority Very Low
- Reported Version Daily build (which?)
- Due in Version Undecided
-
Due Date
Undecided
- Votes
- Private
Attached to Project: Rockbox
Opened by DiscoSuperstar00 - 2007-11-09
Last edited by midgey34 - 2007-11-09
Opened by DiscoSuperstar00 - 2007-11-09
Last edited by midgey34 - 2007-11-09
FS#8125 - Inconsistent scale in color selection
Color selector has different scales for colors. Specifically, the red and blue scales range from 0-31 and the green scale ranges from 0-63.
Seems like these scales should be identical, preferably 0-63 for the 16bpp targets.
Closed by midgey34
2007-11-09 17:56
Reason for closing: Not a Bug
Additional comments about closing: Warning: Undefined array key "typography" in /home/rockbox/flyspray/plugins/dokuwiki/inc/parserutils.php on line 371 Warning: Undefined array key "camelcase" in /home/rockbox/flyspray/plugins/dokuwiki/inc/parserutils.php on line 407
2007-11-09 17:56
Reason for closing: Not a Bug
Additional comments about closing: Warning: Undefined array key "typography" in /home/rockbox/flyspray/plugins/dokuwiki/inc/parserutils.php on line 371 Warning: Undefined array key "camelcase" in /home/rockbox/flyspray/plugins/dokuwiki/inc/parserutils.php on line 407
See my comment
Loading...
Available keyboard shortcuts
- Alt + ⇧ Shift + l Login Dialog / Logout
- Alt + ⇧ Shift + a Add new task
- Alt + ⇧ Shift + m My searches
- Alt + ⇧ Shift + t focus taskid search
Tasklist
- o open selected task
- j move cursor down
- k move cursor up
Task Details
- n Next task
- p Previous task
- Alt + ⇧ Shift + e ↵ Enter Edit this task
- Alt + ⇧ Shift + w watch task
- Alt + ⇧ Shift + y Close Task
Task Editing
- Alt + ⇧ Shift + s save task
On our color targets, the pixel format is RGB565 (or swapped). This means 5 bits for red and blue and 6 bits for green so the range for red and blue is 0-31 (00000 - 11111) and the range is 0-63 for green (000000 - 111111). The ranges are exactly as they are supposed to be and should not be changed. This is not a bug.