Difference between revisions of "Bdisp SetPoint DD"
From WikiPrizm
Jump to navigationJump to searchm (→Synopsis) |
|||
Line 1: | Line 1: | ||
− | == | + | {{syscall |
− | + | | name = Bdisp_SetPoint_DD | |
− | + | | index = 0x026B | |
− | + | | signature = void Bdisp_SetPoint_DD(int x, int y, unsigned short color) | |
− | + | | synopsis = Sets a single pixel on the screen, bypassing VRAM. | |
− | Sets a single | + | | parameters = |
− | + | * '''x''': pixel column, 0 to 383. | |
− | + | * '''y''': pixel row, 0 to 215. | |
− | * | + | * '''color''': Pixel value to write. |
− | * | + | | comments = You'll usually want to write to VRAM, rather than directly to the display as this function does. |
− | * | + | }} |
− | |||
− | = | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− |
Revision as of 00:12, 17 May 2012
Synopsis
Header: Not documented
Syscall index: 0x026B
Function signature: void Bdisp_SetPoint_DD(int x, int y, unsigned short color)
Sets a single pixel on the screen, bypassing VRAM.
Parameters
- x: pixel column, 0 to 383.
- y: pixel row, 0 to 215.
- color: Pixel value to write.
Comments
You'll usually want to write to VRAM, rather than directly to the display as this function does.