VirtualBox

source: vbox/trunk/src/VBox/Additions/WINNT/Graphics/crOpenGL/pack/packspu.h@ 15532

Last change on this file since 15532 was 15532, checked in by vboxsync, 16 years ago

crOpenGL: export to OSE

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 2.0 KB
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 CR_PACKSPU_H
8#define CR_PACKSPU_H
9
10#ifdef WINDOWS
11#define PACKSPU_APIENTRY __stdcall
12#else
13#define PACKSPU_APIENTRY
14#endif
15
16#include "cr_glstate.h"
17#include "cr_netserver.h"
18#include "cr_pack.h"
19#include "cr_spu.h"
20#include "cr_threads.h"
21#include "state/cr_client.h"
22
23typedef struct thread_info_t ThreadInfo;
24typedef struct context_info_t ContextInfo;
25
26struct thread_info_t {
27 unsigned long id;
28 CRNetServer netServer;
29 CRPackBuffer buffer;
30 CRPackBuffer normBuffer;
31 CRPackBuffer BeginEndBuffer;
32 GLenum BeginEndMode;
33 int BeginEndState;
34 ContextInfo *currentContext;
35 CRPackContext *packer;
36 int writeback;
37};
38
39struct context_info_t {
40 CRContext *clientState; /* used to store client-side GL state */
41 GLint serverCtx; /* context ID returned by server */
42 char glVersion[100]; /* GL_VERSION string */
43};
44
45typedef struct {
46 int id;
47 int swap;
48
49 /* config options */
50 int emit_GATHER_POST_SWAPBUFFERS;
51 int swapbuffer_sync;
52
53 int ReadPixels;
54
55 char *name;
56 int buffer_size;
57
58 int numThreads;
59 ThreadInfo thread[MAX_THREADS];
60
61 int numContexts;
62 ContextInfo context[CR_MAX_CONTEXTS];
63} PackSPU;
64
65extern PackSPU pack_spu;
66
67#ifdef CHROMIUM_THREADSAFE
68extern CRmutex _PackMutex;
69extern CRtsd _PackTSD;
70#define GET_THREAD(T) ThreadInfo *T = crGetTSD(&_PackTSD)
71#else
72#define GET_THREAD(T) ThreadInfo *T = &(pack_spu.thread[0])
73#endif
74
75#define GET_CONTEXT(C) \
76 GET_THREAD(thread); \
77 ContextInfo *C = thread->currentContext
78
79extern void packspuCreateFunctions( void );
80extern void packspuSetVBoxConfiguration( const SPU *child_spu );
81extern void packspuConnectToServer( CRNetServer *server );
82extern void packspuFlush( void *arg );
83extern void packspuHuge( CROpcode opcode, void *buf );
84
85extern ThreadInfo *packspuNewThread( unsigned long id );
86
87
88#endif /* CR_PACKSPU_H */
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette