Sweden-Number/dlls/wined3d/state.c

39 lines
1.4 KiB
C
Raw Normal View History

2006-12-05 23:36:10 +01:00
/*
* Direct3D state management
*
* Copyright 2006 Stefan D<EFBFBD>singer for CodeWeavers
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include <stdio.h>
#ifdef HAVE_FLOAT_H
# include <float.h>
#endif
#include "wined3d_private.h"
WINE_DEFAULT_DEBUG_CHANNEL(d3d);
static void state_unknown(DWORD state, IWineD3DStateBlockImpl *stateblock) {
FIXME("Unknown state %d\n", state);
}
const struct StateEntry StateTable[] =
{
/* State name representative, apply function */
{ /* 0, Undefined */ 0, state_unknown },
};