Last change
on this file since 17543 was 17269, checked in by vboxsync, 16 years ago |
export to OSE
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Author Date Id Revision
|
File size:
744 bytes
|
Line | |
---|
1 | /* Copyright (c) 2001, Stanford University
|
---|
2 | * All rights reserved.
|
---|
3 | *
|
---|
4 | * See the file LICENSE.txt for information on redistributing this software.
|
---|
5 | */
|
---|
6 |
|
---|
7 | #ifndef FEEDBACK_SPU_H
|
---|
8 | #define FEEDBACK_SPU_H
|
---|
9 |
|
---|
10 | #ifdef WINDOWS
|
---|
11 | #define FEEDBACKSPU_APIENTRY __stdcall
|
---|
12 | #else
|
---|
13 | #define FEEDBACKSPU_APIENTRY
|
---|
14 | #endif
|
---|
15 |
|
---|
16 | #include "cr_spu.h"
|
---|
17 | #include "cr_timer.h"
|
---|
18 | #include "cr_glstate.h"
|
---|
19 |
|
---|
20 | typedef struct {
|
---|
21 | int id;
|
---|
22 | int has_child;
|
---|
23 | SPUDispatchTable self, child, super;
|
---|
24 |
|
---|
25 | int render_mode;
|
---|
26 |
|
---|
27 | int default_viewport;
|
---|
28 |
|
---|
29 | CRCurrentStatePointers current;
|
---|
30 | } feedbackSPU;
|
---|
31 |
|
---|
32 | extern feedbackSPU feedback_spu;
|
---|
33 |
|
---|
34 | extern SPUNamedFunctionTable _cr_feedback_table[];
|
---|
35 |
|
---|
36 | extern SPUOptions feedbackSPUOptions[];
|
---|
37 |
|
---|
38 | extern void feedbackspuGatherConfiguration( void );
|
---|
39 |
|
---|
40 | #endif /* FEEDBACK_SPU_H */
|
---|
Note:
See
TracBrowser
for help on using the repository browser.