

#include <nitro/gx/g2.h>
GXWndPlane G2_GetWndOutsidePlane( void );
GXWndPlane G2S_GetWndOutsidePlane( void );
None.
Information for the plane being displayed outside of the window.
Gets the settings for the plane that is displayed outside of the window and the existence of color effects as the GXWndPlane structure.
Use the G2_GetWndOutsidePlane function to get the settings for the main 2D engine and the G2S_GetWndOutsidePlane function to get the settings for the sub 2D engine.
The GXWndPlane structure that gets returned includes the following information:
planeMask |
Information about the settings for the plane that is being displayed outside of the window. See the G2_SetWndOutsidePlane function for more details. |
effect |
The setting for the existence of color effects inside the window. |
Following is the type definition for type GXWndPlane:
typedef struct
{
u8 planeMask :5;
u8 effect :1;
u8 _reserve :2;
}
GXWndPlane;
2004/12/24 Initial version.
CONFIDENTIAL