]> Joshua Wise's Git repositories - netwatch.git/blobdiff - video/tnt2.c
Add a first cut at text.
[netwatch.git] / video / tnt2.c
index 32e646a407989ecd17ed35739de95d5f0502d0d4..f23a9d7d86aced6f786d0232edaf2f6d2769a299 100644 (file)
@@ -4,6 +4,9 @@
 #include <output.h>
 #include <fb.h>
 #include <paging.h>
+#include <text.h>
+
+#include "checksumrect.h"
 
 static void tnt2_getvmode(void *priv);
 
@@ -27,12 +30,15 @@ static void tnt2_getvmode(void *priv)
                tnt2_fb.curmode.format = FB_RGB888;
                tnt2_fb.curmode.bytestride = 4;
                tnt2_fb.curmode.text = 0;
+               tnt2_fb.checksum_rect = checksum_rect_generic32;
                break;
        case 0:
                tnt2_fb.curmode.text = 1;
+               tnt2_fb.checksum_rect = (checksum_rect_t) text_checksum;
                break;
        default:
                tnt2_fb.curmode.text = 1;
+               tnt2_fb.checksum_rect = (checksum_rect_t) text_checksum;
                outputf("Unknown TNT2 format %x", vgard(0x28));
                break;
        }
This page took 0.019037 seconds and 4 git commands to generate.