Lines Matching refs:df

25     demo::RenderSystemDrawing df;  variable
95 df.Initialize(nn::os::GetDeviceMemoryAddress(), nn::os::GetDeviceMemorySize(), in SetupRenderSystem()
104 df.Finalize(); in ReleaseRenderSystem()
110 df.SetRenderTarget(NN_GX_DISPLAY0); in DrawText()
111 df.Clear(); in DrawText()
113 df.SetColor(0.0f, 0.0f, 0.5f); in DrawText()
114 df.FillRectangle( 0, 0, 399, 255 ); in DrawText()
115 df.SetColor(0.5f, 0.4f, 0.0f); in DrawText()
116 df.FillRectangle( 0, 0, 399, 40 ); in DrawText()
117 df.SetColor(0.5f, 0.0f, 0.4f); in DrawText()
118 df.FillRectangle( 0, 180, 399, 40 ); in DrawText()
119 df.SetColor(1.0f, 1.0f, 1.0f); in DrawText()
120 df.DrawText( 100, 50, "** DEMO APPLICATION **" ); in DrawText()
122 df.SetColor(1.0f, 1.0f, 0.0f); in DrawText()
125 df.DrawText( 40, 90, "push [START] to run COPPACS Setting Menu"); in DrawText()
128 df.SetColor(1.0f, 1.0f, 1.0f); in DrawText()
130 df.DrawText( 340, 50, "%d", loopCnt ); in DrawText()
133 df.DrawText( 30, 130, "IsCoppacsSupported :%s" ,isCoppacsSupported?"true":"false"); in DrawText()
134 df.DrawText( 30, 140, "GetCoppacsRestriction:"); in DrawText()
135 df.DrawText( 60, 150, "%s" ,COPPACS_RESTRICTION_STRING[coppacsRestriction]); in DrawText()
140 df.DrawText( 30, 160, "IsFromMset :true(%d)",msetScene); in DrawText()
144 df.DrawText( 30, 160, "IsFromMset :false"); in DrawText()
148 df.SwapBuffers(); in DrawText()
151 df.SetRenderTarget(NN_GX_DISPLAY1); in DrawText()
152 df.Clear(); in DrawText()
154 df.SetColor(0.0f, 0.5f, 0.0f); in DrawText()
155 df.FillRectangle( 0, 0, 399, 255 ); in DrawText()
156 df.SetColor(1.0f, 1.0f, 1.0f); in DrawText()
157 df.DrawText( 80, 50, "** DEMO APPLICATION **" ); in DrawText()
159 df.SwapBuffers(); in DrawText()