4eefd7cd3392b1a2dfcfc4584c745ab4cd0bdc5c
[tpg/acess2.git] / Usermode / Applications / axwin3_src / WM / renderer_passthru.c
1 /*
2  * Acess2 Window Manager v3
3  * - By John Hodge (thePowersGang)
4  *
5  * renderer_passthru.c
6  * - Passthrough window render (framebuffer essentially)
7  */
8 #include <common.h>
9 #include <wm_renderer.h>
10
11 // === GLOBALS ===
12 tWMRenderer     gRenderer_Passthru = {
13         .CreateWindow = Renderer_Passthru_Create,
14         .Redraw = Renderer_Passthru_Redraw,
15         .SendMessage = Renderer_Passthru_SendMessage
16 };
17
18 // === CODE ===
19 int Renderer_Passthru_Init(void)
20 {
21         return 0;
22 }
23
24

UCC git Repository :: git.ucc.asn.au