nngxAddB2LTransferCommandRaw Function
NNGX_APICALL void NNGX_APIENTRY nngxAddB2LTransferCommandRaw(
nngxCommandList * cmdlist,
const GLvoid * srcaddr,
GLsizei srcwidth,
GLsizei srcheight,
GLenum srcformat,
GLvoid * dstaddr,
GLsizei dstwidth,
GLsizei dstheight,
GLenum dstformat,
GLenum aamode,
GLboolean yflip,
GLsizei blocksize
);
| Name | Description | |
|---|---|---|
| in | cmdlist |
The target command list object. |
| in | srcaddr |
Transfer source block image address. |
| in | srcwidth |
Transfer source image width. |
| in | srcheight |
Transfer source image height. |
| in | srcformat |
Transfer source image pixel format. |
| out | dstaddr |
Transfer destination linear image storage address. |
| in | dstwidth |
Transfer destination image width. |
| in | dstheight |
Transfer destination image height. |
| in | dstformat |
Transfer destination image pixel format. |
| in | aamode |
Anti-alias filter mode. |
| in | yflip |
Whether to flip vertically when transferring images. |
| in | blocksize |
Block image block size (8 or 32). |
Adds a command to the specified command list to convert a block image to a linear image and then transfer it.
This is the directly specified command list version ofnngxAddB2LTransferCommand.CONFIDENTIAL