NNS_G2dGetRendererAffineOverwriteMode

C Specification

#include <nnsys/g2d/g2d_Renderer.h>
NNS_G2D_INLINE NNSG2dRendererAffineTypeOverwiteMode 
        NNS_G2dGetRendererAffineOverwriteMode( const NNSG2dRendererInstance* pRend );

Arguments

pRend [IN] Renderer entity

Return Values

Processing method for overwriting the OBJ affine transformation mode of the renderer.

Description

This function obtains the processing method for overwriting the OBJ's affine transformation mode when the renderer is drawing OBJs by using the 2D graphics engine. The initial value is set to NNS_G2D_RND_AFFINE_OVERWRITE_DOUBLE (set to the double-size affine transformation).
The definition of NNSG2dRendererAffineTypeOverwiteMode is shown below:

typedef enum NNSG2dRendererAffineTypeOverwiteMode
{
NNS_G2D_RND_AFFINE_OVERWRITE_NONE,  // Does not overwrite
NNS_G2D_RND_AFFINE_OVERWRITE_NORMAL,// Sets to the normal affine transformation
NNS_G2D_RND_AFFINE_OVERWRITE_DOUBLE // Sets to the double-size affine transformation
    
}NNSG2dRendererAffineTypeOverwiteMode;

See Also

NNS_G2dSetRendererAffineOverwriteMode

Revision History

10/04/2004 Initial version.