| 161 | |
| 162 | static void xDrawLine2D_LocaliFMVVersion(float, float, float, float); |
| 163 | static void Show_frame() |
| 164 | { |
| 165 | RwRGBA color = { 0 }; |
| 166 | RwCamera* cam = iCameraCreate(640, 480, FALSE); |
| 167 | RwCameraClear(cam, &color, rwCAMERACLEARIMAGE); |
| 168 | |
| 169 | RwCameraBeginUpdate(cam); |
| 170 | Width_scale = 640 / Bink->Width; |
| 171 | Height_scale = 480 / Bink->Height; |
| 172 | xDrawLine2D_LocaliFMVVersion(0.0f, 0.0f, 0.0f, 0.0f); |
| 173 | DrawFrame(0.0f, 0.0f, Width_scale, Height_scale); |
| 174 | RwCameraEndUpdate(cam); |
| 175 | RwCameraShowRaster(cam, NULL, 0); |
| 176 | |
| 177 | iCameraDestroy(cam); |
| 178 | } |
| 179 | |
| 180 | static void* arammalloc(size_t size) |
| 181 | { |
no test coverage detected