blob: d21617390815720e3669b1548d6eb75b6da5446d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/* Copyright (c) 2001, Stanford University
* All rights reserved
*
* See the file LICENSE.txt for information on redistributing this software.
*/
#include "arrayspu.h"
#include "cr_string.h"
#include <stdio.h>
static void __setDefaults( void )
{
}
/* No SPU options yet.
*/
SPUOptions arraySPUOptions[] = {
{ NULL, CR_BOOL, 0, NULL, NULL, NULL, NULL, NULL },
};
void arrayspuSetVBoxConfiguration( void )
{
__setDefaults();
}
|