diff options
| author | ultramn <dchapm2@umbc.edu> | 2017-05-14 18:54:49 -0700 |
|---|---|---|
| committer | ultramn <dchapm2@umbc.edu> | 2017-05-14 18:54:49 -0700 |
| commit | 0d83014f61489522b9b55f3966eaf4c9578a14e5 (patch) | |
| tree | 65e36dddc8b212250c84fb0a159bb3bc97838152 /redist/RawDrawNull.c | |
| parent | 006af3f9b168fcde6892a22ae914b5b55634b2ca (diff) | |
| parent | 2e8bf907f46bcb98b3b482e957b98c52cacb6a4b (diff) | |
| download | libsurvive-0d83014f61489522b9b55f3966eaf4c9578a14e5.tar.gz libsurvive-0d83014f61489522b9b55f3966eaf4c9578a14e5.tar.bz2 | |
Merge branch 'master' of https://github.com/cnlohr/libsurvive
Diffstat (limited to 'redist/RawDrawNull.c')
| -rw-r--r-- | redist/RawDrawNull.c | 74 |
1 files changed, 0 insertions, 74 deletions
diff --git a/redist/RawDrawNull.c b/redist/RawDrawNull.c deleted file mode 100644 index 34346cc..0000000 --- a/redist/RawDrawNull.c +++ /dev/null @@ -1,74 +0,0 @@ -//Copyright (c) 2017 <>< Charles Lohr - Under the MIT/x11 or NewBSD License you choose. - -#include "DrawFunctions.h" - -static int w, h; -void CNFGGetDimensions( short * x, short * y ) -{ - *x = w; - *y = h; -} - -static void InternalLinkScreenAndGo( const char * WindowName ) -{ -} - -void CNFGSetupFullscreen( const char * WindowName, int screen_no ) -{ - CNFGSetup( WindowName, 640, 480 ); -} - - -void CNFGTearDown() -{ -} - -void CNFGSetup( const char * WindowName, int sw, int sh ) -{ - w = sw; - h = sh; -} - -void CNFGHandleInput() -{ -} - - -void CNFGUpdateScreenWithBitmap( unsigned long * data, int w, int h ) -{ -} - - -#ifndef RASTERIZER - - -uint32_t CNFGColor( uint32_t RGB ) -{ -} - -void CNFGClearFrame() -{ -} - -void CNFGSwapBuffers() -{ -} - -void CNFGTackSegment( short x1, short y1, short x2, short y2 ) -{ -} - -void CNFGTackPixel( short x1, short y1 ) -{ -} - -void CNFGTackRectangle( short x1, short y1, short x2, short y2 ) -{ -} - -void CNFGTackPoly( RDPoint * points, int verts ) -{ -} - -#endif - |
