arrayspu.h revision e0e0c19eefceaf5d4ec40f9466b58a771f50e799
/* Copyright (c) 2001, Stanford University
* All rights reserved.
*
* See the file LICENSE.txt for information on redistributing this software.
*/
#ifndef ARRAY_SPU_H
#define ARRAY_SPU_H
#ifdef WINDOWS
#define ARRAYSPU_APIENTRY __stdcall
#else
#define ARRAYSPU_APIENTRY
#endif
#include "cr_spu.h"
#include "cr_glstate.h"
void arrayspuSetVBoxConfiguration( void );
typedef struct {
int id;
int has_child;
CRContext *ctx;
SPUDispatchTable self, child, super;
} ArraySPU;
extern ArraySPU array_spu;
#endif /* ARRAY_SPU_H */