nngxAddMemoryFillCommandRaw Function

Syntax

NNGX_APICALL void NNGX_APIENTRY nngxAddMemoryFillCommandRaw(
     nngxCommandList * cmdlist,
     GLvoid * startaddr0,
     GLsizei size0,
     GLuint data0,
     GLsizei width0,
     GLvoid * startaddr1,
     GLsizei size1,
     GLuint data1,
     GLsizei width1
);

Arguments

Name Description
in cmdlist The target command list object.
in startaddr0 Start address of the memory region to fill (channel 0).
in size0 Size in bytes to fill (channel 0).
in data0 Fill data to use (channel 0).
in width0 Bit width of the fill pattern (16, 24, or 32) (channel 0).
in startaddr1 Start address of the memory region to fill (channel 1).
in size1 Size in bytes to fill (channel 1).
in data1 Fill data to use (channel 1).
in width1 Bit width of the fill pattern (16, 24, or 32) (channel 1).

Return Values

No values are returned.

Description

Adds a memory-fill command to the specified command list.

This is the directly specified command list version of nngxAddMemoryFillCommand.

Revision History

2012/05/09
Initial version.

CONFIDENTIAL