Gets Status of Rendering That Has Been Executed

Prototype declaration:


KMSTATUS
kmGetRenderStatus(	
		IN   KMINT32    nRenderID
	);

Description:

This function checks the current status of a rendering operation that was executed.
Parameters:
nRenderID(input)
    Input the return value when kmRender or kmRenderTexture has been executed.

Note: If NO_FLIP was specified for kmRenderTexture or kmRender, KMSTATUS_UNDER_DISPLAY will not be
      a return value for this function.
Return values:
Value Description
KMSTATUS_UNDER_DMA The rendering operation with the specified ID is currently transferring vertex data by means of DMA transfer.
KMSTATUS_FINISH_DMA The rendering operation with the specified ID has currently finished DMA transfer.
KMSTATUS_UNDER_RENDER The rendering operation with the specified ID is currently engaged in the rendering process.
KMSTATUS_FINISH_RENDER The rendering operation with the specified ID has currently finished the rendering process.
KMSTATUS_UNDER_DISPLAY The rendering operation with the specified ID is currently being displayed.
KMSTATUS_FINISH_ALL_SEQUENCE The rendering operation with the specified ID has currently finished all processing.