Search
lxdream.org :: lxdream/src/drivers/dummy.c
lxdream 0.9.1
released Jun 29
Download Now
filename src/drivers/dummy.c
changeset 1027:4e527bc96109
author nkeynes
date Wed Feb 15 17:54:51 2012 +1000 (12 years ago)
permissions -rw-r--r--
last change Use GL_TEXTURE_2D instead of GL_TEXTURE_RECTANGLE_ARB for frame buffers, for
systems that don't provide the latter (and there's not really much
difference anyway).
Add macro wrangling for GL_DEPTH24_STENCIL8 format
view annotate diff log raw
     1 /**
     2  * $Id$
     3  *
     4  * Dummy plugin that exists to mark the plugin directory (and also for testing
     5  * purposes)
     6  *
     7  * Copyright (c) 2009 Nathan Keynes.
     8  *
     9  * This program is free software; you can redistribute it and/or modify
    10  * it under the terms of the GNU General Public License as published by
    11  * the Free Software Foundation; either version 2 of the License, or
    12  * (at your option) any later version.
    13  *
    14  * This program is distributed in the hope that it will be useful,
    15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    17  * GNU General Public License for more details.
    18  */
    20 #include "plugin.h"
    22 DEFINE_PLUGIN( PLUGIN_NONE, "dummy", NULL );
.