0 Members and 3 Guests are viewing this topic.
By the way, what OS do we need to run it (when it comes out ofc) so I download it before TI removes all the available downloads to avoid people running it ? (that was a long sentence )
They'll only pull the old versions after they've fixed their glitches and released a new version
Latest version, of course.
Quote from: calc84maniac on December 04, 2011, 12:44:17 pmLatest version, of course.OS 3.1.0.392 ?
so this doesn't work for normal cx yet?
You can draw stuff exactly like on the Prizm. The buffer is a 320x240 array of shorts, so you can read and store the pixels directly by array indexing. Basically if you have red value 0-31, green value 0-63, blue value 0-31, you get short color = (red << 11) | (blue << 5) | green;To get the buffer array, you might be able to do unsigned short buffer[320][240] = *(unsigned short**)0xC0000010; I'm not exactly sure of the correct syntax though.