a75484cfd3b3ba656f7ff91320786a0c5d3d36d3
[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         .Name = "Passthru",
14         .CreateWindow = Renderer_Passthru_Create,
15         .Redraw = Renderer_Passthru_Redraw,
16         .SendMessage = Renderer_Passthru_SendMessage
17 };
18
19 // === CODE ===
20 int Renderer_Passthru_Init(void)
21 {
22         return 0;
23 }
24
25

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