VirtualBox

source: vbox/trunk/src/VBox/Additions/common/crOpenGL/pack/packspu.h@ 32625

Last change on this file since 32625 was 30440, checked in by vboxsync, 15 years ago

crOpenGL: wddm friendly windows info tracking + more consistent updates (disabled except windows yet)

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 2.2 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 GLboolean bInjectThread;
38};
39
40struct context_info_t {
41 CRContext *clientState; /* used to store client-side GL state */
42 GLint serverCtx; /* context ID returned by server */
43 GLubyte glVersion[100]; /* GL_VERSION string */
44 GLubyte pszRealVendor[100];
45 GLubyte pszRealVersion[100];
46 GLubyte pszRealRenderer[100];
47};
48
49typedef struct {
50 int id;
51 int swap;
52
53 /* config options */
54 int emit_GATHER_POST_SWAPBUFFERS;
55 int swapbuffer_sync;
56
57 int ReadPixels;
58
59 char *name;
60 int buffer_size;
61
62 int numThreads;
63 ThreadInfo thread[MAX_THREADS];
64
65 int numContexts;
66 ContextInfo context[CR_MAX_CONTEXTS];
67} PackSPU;
68
69extern PackSPU pack_spu;
70
71#ifdef CHROMIUM_THREADSAFE
72extern CRmutex _PackMutex;
73extern CRtsd _PackTSD;
74#define GET_THREAD(T) ThreadInfo *T = crGetTSD(&_PackTSD)
75#else
76#define GET_THREAD(T) ThreadInfo *T = &(pack_spu.thread[0])
77#endif
78
79#define GET_CONTEXT(C) \
80 GET_THREAD(thread); \
81 ContextInfo *C = thread->currentContext
82
83extern void packspuCreateFunctions( void );
84extern void packspuSetVBoxConfiguration( const SPU *child_spu );
85extern void packspuConnectToServer( CRNetServer *server );
86extern void packspuFlush( void *arg );
87extern void packspuHuge( CROpcode opcode, void *buf );
88
89extern GLboolean packspuSyncOnFlushes();
90
91extern ThreadInfo *packspuNewThread( unsigned long id );
92
93
94#endif /* CR_PACKSPU_H */
Note: See TracBrowser for help on using the repository browser.

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