1 | /* $Id: feedback_context.c 28800 2010-04-27 08:22:32Z vboxsync $ */
|
---|
2 |
|
---|
3 | /** @file
|
---|
4 | * VBox feedback spu, context tracking.
|
---|
5 | */
|
---|
6 |
|
---|
7 | /*
|
---|
8 | * Copyright (C) 2009 Oracle Corporation
|
---|
9 | *
|
---|
10 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
11 | * available from http://www.virtualbox.org. This file is free software;
|
---|
12 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
13 | * General Public License (GPL) as published by the Free Software
|
---|
14 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
15 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
16 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
17 | */
|
---|
18 |
|
---|
19 | #include "cr_spu.h"
|
---|
20 | #include "cr_error.h"
|
---|
21 | #include "feedbackspu.h"
|
---|
22 |
|
---|
23 | /*@todo Multithreading case. (See feedback_spu.self.RenderMode)*/
|
---|
24 |
|
---|
25 | GLint FEEDBACKSPU_APIENTRY
|
---|
26 | feedbackspu_CreateContext( const char *dpyName, GLint visual, GLint shareCtx )
|
---|
27 | {
|
---|
28 | GLint ctx, slot;
|
---|
29 |
|
---|
30 | #ifdef CHROMIUM_THREADSAFE
|
---|
31 | crLockMutex(&feedback_spu.mutex);
|
---|
32 | #endif
|
---|
33 |
|
---|
34 | ctx = feedback_spu.child.CreateContext(dpyName, visual, shareCtx);
|
---|
35 |
|
---|
36 | /* find an empty context slot */
|
---|
37 | for (slot = 0; slot < feedback_spu.numContexts; slot++) {
|
---|
38 | if (!feedback_spu.context[slot].clientState) {
|
---|
39 | /* found empty slot */
|
---|
40 | break;
|
---|
41 | }
|
---|
42 | }
|
---|
43 | if (slot == feedback_spu.numContexts) {
|
---|
44 | feedback_spu.numContexts++;
|
---|
45 | }
|
---|
46 |
|
---|
47 | feedback_spu.context[slot].clientState = crStateCreateContext(NULL, visual, NULL);
|
---|
48 | feedback_spu.context[slot].clientCtx = ctx;
|
---|
49 |
|
---|
50 | #ifdef CHROMIUM_THREADSAFE
|
---|
51 | crUnlockMutex(&feedback_spu.mutex);
|
---|
52 | #endif
|
---|
53 |
|
---|
54 | return ctx;
|
---|
55 | }
|
---|
56 |
|
---|
57 | void FEEDBACKSPU_APIENTRY
|
---|
58 | feedbackspu_MakeCurrent( GLint window, GLint nativeWindow, GLint ctx )
|
---|
59 | {
|
---|
60 | #ifdef CHROMIUM_THREADSAFE
|
---|
61 | crLockMutex(&feedback_spu.mutex);
|
---|
62 | #endif
|
---|
63 | feedback_spu.child.MakeCurrent(window, nativeWindow, ctx);
|
---|
64 |
|
---|
65 | if (ctx) {
|
---|
66 | int slot;
|
---|
67 | GLint oldmode;
|
---|
68 |
|
---|
69 | for (slot=0; slot<feedback_spu.numContexts; ++slot)
|
---|
70 | if (feedback_spu.context[slot].clientCtx == ctx) break;
|
---|
71 | CRASSERT(slot < feedback_spu.numContexts);
|
---|
72 |
|
---|
73 | crStateMakeCurrent(feedback_spu.context[slot].clientState);
|
---|
74 |
|
---|
75 | crStateGetIntegerv(GL_RENDER_MODE, &oldmode);
|
---|
76 |
|
---|
77 | if (oldmode!=feedback_spu.render_mode)
|
---|
78 | {
|
---|
79 | feedback_spu.self.RenderMode(oldmode);
|
---|
80 | }
|
---|
81 | }
|
---|
82 | else
|
---|
83 | {
|
---|
84 | crStateMakeCurrent(NULL);
|
---|
85 | }
|
---|
86 |
|
---|
87 | #ifdef CHROMIUM_THREADSAFE
|
---|
88 | crUnlockMutex(&feedback_spu.mutex);
|
---|
89 | #endif
|
---|
90 | }
|
---|
91 |
|
---|
92 | void FEEDBACKSPU_APIENTRY
|
---|
93 | feedbackspu_DestroyContext( GLint ctx )
|
---|
94 | {
|
---|
95 | #ifdef CHROMIUM_THREADSAFE
|
---|
96 | crLockMutex(&feedback_spu.mutex);
|
---|
97 | #endif
|
---|
98 | feedback_spu.child.DestroyContext(ctx);
|
---|
99 |
|
---|
100 | if (ctx) {
|
---|
101 | int slot;
|
---|
102 |
|
---|
103 | for (slot=0; slot<feedback_spu.numContexts; ++slot)
|
---|
104 | if (feedback_spu.context[slot].clientCtx == ctx) break;
|
---|
105 | CRASSERT(slot < feedback_spu.numContexts);
|
---|
106 |
|
---|
107 | crStateDestroyContext(feedback_spu.context[slot].clientState);
|
---|
108 |
|
---|
109 | feedback_spu.context[slot].clientState = NULL;
|
---|
110 | feedback_spu.context[slot].clientCtx = 0;
|
---|
111 | }
|
---|
112 |
|
---|
113 | #ifdef CHROMIUM_THREADSAFE
|
---|
114 | crUnlockMutex(&feedback_spu.mutex);
|
---|
115 | #endif
|
---|
116 | }
|
---|