Changeset 53601 in vbox for trunk/src/VBox/HostServices/SharedOpenGL
- Timestamp:
- Dec 22, 2014 12:13:45 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 97364
- Location:
- trunk/src/VBox/HostServices/SharedOpenGL/render
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedOpenGL/render/renderspu_cocoa_helper.h
r53556 r53601 22 22 #include <VBox/VBoxCocoa.h> 23 23 #include <OpenGL/OpenGL.h> 24 #include <cr_vreg.h> 25 #include <cr_compositor.h> 24 #ifdef IN_VMSVGA3D 25 # include "../../../GuestHost/OpenGL/include/cr_vreg.h" 26 # include "../../../GuestHost/OpenGL/include/cr_compositor.h" 27 #else 28 # include <cr_vreg.h> 29 # include <cr_compositor.h> 30 #endif 26 31 27 32 -
trunk/src/VBox/HostServices/SharedOpenGL/render/renderspu_cocoa_helper.m
r53594 r53601 1 1 /* $Id$ */ 2 2 /** @file 3 * VirtualBox OpenGL Cocoa Window System Helper Implementation. 3 * VirtualBox OpenGL Cocoa Window System Helper Implementation. 4 * 5 * This source file is shared between the SharedOpenGL HGCM service and the 6 * SVGA3d emulation. 4 7 */ 5 8 … … 59 62 * this is our own one, before use. Really neat concept of Objective-C/Cocoa 60 63 * ;) 64 * 61 65 */ 62 66 … … 64 68 * Header Files * 65 69 *******************************************************************************/ 70 #ifdef IN_VMSVGA3D 71 # define LOG_GROUP LOG_GROUP_DEV_VMSVGA 72 #endif 66 73 #include "renderspu_cocoa_helper.h" 67 74 … … 69 76 #undef PVM /* sys/param.h (included via Cocoa.h) pollutes the namespace with this define. */ 70 77 71 #include "chromium.h" /* For the visual bits of chromium */ 72 78 #ifndef IN_VMSVGA3D 79 # include "chromium.h" /* For the visual bits of chromium */ 80 #endif 81 82 #include <iprt/assert.h> 83 #include <iprt/critsect.h> 84 #include <iprt/mem.h> 85 #include <iprt/string.h> 86 #include <iprt/time.h> 73 87 #include <iprt/thread.h> 74 #include <iprt/string.h> 75 #include <iprt/mem.h> 76 #include <iprt/time.h> 77 #include <iprt/assert.h> 88 78 89 #include <VBox/VBoxOGLTest.h> 79 80 #include <cr_vreg.h> 81 #include <cr_error.h> 82 #include <cr_blitter.h> 83 #ifdef VBOX_WITH_CRDUMPER_THUMBNAIL 84 # include <cr_pixeldata.h> 85 #endif 86 87 88 #include "renderspu.h" 90 #include <VBox/log.h> 91 92 #ifdef IN_VMSVGA3D 93 # include "DevVGA-SVGA3d-cocoa.h" 94 #else 95 # include <cr_vreg.h> 96 # include <cr_error.h> 97 # include <cr_blitter.h> 98 # ifdef VBOX_WITH_CRDUMPER_THUMBNAIL 99 # include <cr_pixeldata.h> 100 # endif 101 # include "renderspu.h" 102 #endif 103 89 104 90 105 … … 110 125 #ifdef DEBUG_VERBOSE 111 126 # error "should be disabled!" 112 # define DEBUG_INFO(text) do { \ 113 crWarning text ; \ 114 AssertFailed(); \ 115 } while (0) 116 117 # define DEBUG_WARN(text) do { \ 118 crWarning text ; \ 119 AssertFailed(); \ 120 } while (0) 127 # ifdef IN_VMSVGA3D 128 # define DEBUG_INFO(text) do { LogRel(text); AssertFailed(); } while (0) 129 # define DEBUG_WARN(text) do { LogRel(text); AssertFailed(); } while (0) 130 # else 131 # define DEBUG_INFO(text) do { crWarning text; AssertFailed(); } while (0) 132 # define DEBUG_WARN(text) do { crWarning text; AssertFailed(); } while (0) 133 # endif 121 134 122 135 # define DEBUG_MSG(text) do { printf text; } while (0) … … 125 138 #else 126 139 127 # define DEBUG_INFO(text) do { \ 128 crInfo text ; \ 129 } while (0) 130 131 # define DEBUG_WARN(text) do { \ 132 crWarning text ; \ 133 } while (0) 134 140 # ifdef IN_VMSVGA3D 141 # define DEBUG_INFO(text) do { LogRel(text); } while (0) 142 # define DEBUG_WARN(text) do { LogRel(text); } while (0) 143 # else 144 # define DEBUG_INFO(text) do { crInfo text; } while (0) 145 # define DEBUG_WARN(text) do { crWarning text; } while (0) 146 #endif 135 147 # define DEBUG_MSG(text) do {} while (0) 136 148 # define DEBUG_MSG_1(text) do {} while (0) 137 149 150 #endif 151 #ifdef IN_VMSVGA3D 152 # define DEBUG_MSG_NOT_VMSVGA3D(a_TextArgs) do {} while (0) 153 # define COCOA_LOG_FLOW(a_TextArgs) LogFlow(a_TextArgs) 154 #else 155 # define DEBUG_MSG_NOT_VMSVGA3D(a_TextArgs) DEBUG_MSG(a_TextArgs) 156 # define COCOA_LOG_FLOW(a_TextArgs) DEBUG_MSG(a_TextArgs) 138 157 #endif 139 158 … … 197 216 198 217 218 #ifdef IN_VMSVGA3D 219 220 /* 221 * VMSVGA3D compatability glue. 222 */ 223 224 # define CR_RGB_BIT RT_BIT_32(0) 225 226 # define CR_ALPHA_BIT RT_BIT_32(1) 227 # define CR_DEPTH_BIT RT_BIT_32(2) 228 # define CR_STENCIL_BIT RT_BIT_32(3) 229 # define CR_ACCUM_BIT RT_BIT_32(4) 230 # define CR_DOUBLE_BIT RT_BIT_32(5) 231 # define CR_STEREO_BIT RT_BIT_32(6) 232 # define CR_MULTISAMPLE_BIT RT_BIT_32(7) 233 234 # define CR_OVERLAY_BIT RT_BIT_32(8) 235 # define CR_PBUFFER_BIT RT_BIT_32(9) 236 # define CR_ALL_BITS UINT32_C(0x000003ff) 237 238 typedef struct WindowInfo 239 { 240 uint32_t volatile cRefs; 241 RTCRITSECT CompositorLock; 242 PCVBOXVR_SCR_COMPOSITOR pCompositor; 243 244 //NativeNSViewRef window; 245 //NativeNSViewRef nativeWindow; /**< for render_to_app_window */ 246 NativeNSOpenGLContextRef *currentCtx; 247 } WindowInfo; 248 249 static void vmsvga3DWinInfoDestroy(WindowInfo *pWinInfo) 250 { 251 /** @todo */ 252 } 253 254 DECLINLINE(void) renderspuWinRetain(WindowInfo *pWinInfo) 255 { 256 ASMAtomicIncU32(&pWinInfo->cRefs); 257 } 258 259 DECLINLINE(void) renderspuWinRelease(WindowInfo *pWinInfo) 260 { 261 uint32_t cRefs = ASMAtomicDecU32(&pWinInfo->cRefs); 262 if (!cRefs) 263 vmsvga3DWinInfoDestroy(pWinInfo); 264 } 265 266 static int renderspuVBoxCompositorLock(WindowInfo *pWinInfo, PCVBOXVR_SCR_COMPOSITOR *ppCompositor) 267 { 268 int rc = RTCritSectEnter(&pWinInfo->CompositorLock); 269 AssertRCReturn(rc, rc); 270 if (ppCompositor) 271 *ppCompositor = pWinInfo->pCompositor; 272 return VINF_SUCCESS; 273 } 274 275 static int renderspuVBoxCompositorUnlock(WindowInfo *pWinInfo) 276 { 277 int rc = RTCritSectLeave(&pWinInfo->CompositorLock); 278 AssertRC(rc); 279 return rc; 280 } 281 282 static PCVBOXVR_SCR_COMPOSITOR renderspuVBoxCompositorAcquire(WindowInfo *pWinInfo) 283 { 284 int rc = RTCritSectEnter(&pWinInfo->CompositorLock); 285 AssertRCReturn(rc, NULL); 286 287 PCVBOXVR_SCR_COMPOSITOR pCompositor = pWinInfo->pCompositor; 288 if (pCompositor) 289 { 290 Assert(!CrVrScrCompositorIsEmpty(pWinInfo->pCompositor)); 291 return pCompositor; 292 } 293 294 /* if no compositor is set, release the lock and return */ 295 RTCritSectLeave(&pWinInfo->CompositorLock); 296 return NULL; 297 } 298 299 static void renderspuVBoxCompositorRelease(WindowInfo *pWinInfo) 300 { 301 Assert(pWinInfo->pCompositor); 302 Assert(!CrVrScrCompositorIsEmpty(pWinInfo->pCompositor)); 303 int rc = RTCritSectLeave(&pWinInfo->CompositorLock); 304 AssertRC(rc); 305 } 306 307 308 #endif 309 310 199 311 200 312 static NSOpenGLContext *vboxCtxGetCurrent(void) 201 313 { 314 #ifdef IN_VMSVGA3D 315 #else 202 316 GET_CONTEXT(pCtxInfo); 203 317 if (pCtxInfo) … … 206 320 return pCtxInfo->context; 207 321 } 322 #endif 208 323 209 324 return nil; … … 212 327 static bool vboxCtxSyncCurrentInfo(void) 213 328 { 329 bool fAdjusted = false; 330 #ifdef IN_VMSVGA3D 331 #else 214 332 GET_CONTEXT(pCtxInfo); 215 333 NSOpenGLContext *pCtx = [NSOpenGLContext currentContext]; 216 334 NSView *pView = pCtx ? [pCtx view] : nil; 217 bool fAdjusted = false;218 335 if (pCtxInfo) 219 336 { … … 232 349 fAdjusted = true; 233 350 } 351 #endif 234 352 235 353 return fAdjusted; … … 651 769 - (bool)runTasksSyncIfPossible 652 770 { 771 #ifndef IN_VMSVGA3D 653 772 /* 654 773 * Call on main thread (?) via renderspuCalloutClient (whatever that is). … … 660 779 return true; 661 780 } 781 #endif 662 782 663 783 /* … … 720 840 721 841 /** @name For clipping 722 * @{ */ 842 * @remarks appears to be unused and a complete waste of time + heap. 843 * @{ */ 723 844 GLint m_cClipRects; 724 845 GLint *m_paClipRects; … … 1270 1391 - (id)initWithFrame:(NSRect)frame thread:(RTTHREAD)aThread parentView:(NSView *)pParentView winInfo:(WindowInfo *)pWinInfo 1271 1392 { 1272 DEBUG_FUNC_ENTER(); 1393 COCOA_LOG_FLOW(("%s: self=%p aThread=%p pParentView=%p pWinInfo=%p\n", __PRETTY_FUNCTION__, (void *)self, 1394 (void *)aThread, (void *)pParentView, (void *)pWinInfo)); 1273 1395 1274 1396 m_pParentView = pParentView; … … 1294 1416 self = [super initWithFrame:frame]; 1295 1417 1296 DEBUG_MSG(("OVIW(%p): init OverlayView\n", (void *)self)); 1297 DEBUG_FUNC_LEAVE(); 1418 COCOA_LOG_FLOW(("%s: returns self=%p\n", __PRETTY_FUNCTION__, (void *)self)); 1298 1419 return self; 1299 1420 } … … 1301 1422 - (void)cleanupData 1302 1423 { 1303 DEBUG_FUNC_ENTER();1424 COCOA_LOG_FLOW(("%s: self=%p\n", __PRETTY_FUNCTION__, (void *)self)); 1304 1425 1305 1426 [self deleteDockTile]; … … 1322 1443 [self clearVisibleRegions]; 1323 1444 1324 DEBUG_FUNC_LEAVE();1445 COCOA_LOG_FLOW(("%s: returns\n", __PRETTY_FUNCTION__)); 1325 1446 } 1326 1447 1327 1448 - (void)dealloc 1328 1449 { 1329 DEBUG_FUNC_ENTER(); 1330 DEBUG_MSG(("OVIW(%p): dealloc OverlayView\n", (void *)self)); 1450 COCOA_LOG_FLOW(("%s: self=%p\n", __PRETTY_FUNCTION__, (void *)self)); 1331 1451 1332 1452 [self cleanupData]; 1333 1453 [super dealloc]; 1334 1454 1335 DEBUG_FUNC_LEAVE();1455 COCOA_LOG_FLOW(("%s: returns\n", __PRETTY_FUNCTION__)); 1336 1456 } 1337 1457 1338 1458 - (void)drawRect:(NSRect)aRect 1339 1459 { 1460 COCOA_LOG_FLOW(("%s: self=%p aRect=%d,%d %d,%d\n", __PRETTY_FUNCTION__, (void *)self, (int)aRect.origin.x, (int)aRect.origin.y, 1461 (int)aRect.size.width, (int)aRect.size.height)); 1462 1340 1463 [self vboxTryDrawUI]; 1464 1465 COCOA_LOG_FLOW(("%s: returns\n", __PRETTY_FUNCTION__)); 1341 1466 } 1342 1467 1343 1468 - (void)setGLCtx:(NSOpenGLContext *)pCtx 1344 1469 { 1345 DEBUG_FUNC_ENTER(); 1346 DEBUG_MSG(("OVIW(%p): setGLCtx: new ctx: %p\n", (void *)self, (void *)pCtx)); 1470 COCOA_LOG_FLOW(("%s: self=%p pCtx=%p (old=%p)\n", __PRETTY_FUNCTION__, (void *)self, (void *)pCtx, m_pGLCtx)); 1347 1471 1348 1472 /* … … 1364 1488 } 1365 1489 1366 DEBUG_FUNC_LEAVE();1490 COCOA_LOG_FLOW(("%s: returns\n", __PRETTY_FUNCTION__)); 1367 1491 } 1368 1492 1369 1493 - (NSOpenGLContext *)glCtx 1370 1494 { 1371 DEBUG_FUNC_ENTER(); 1372 DEBUG_FUNC_LEAVE(); 1495 COCOA_LOG_FLOW(("%s: self=%p returns %p\n", __PRETTY_FUNCTION__, (void *)self, (void *)m_pGLCtx)); 1373 1496 return m_pGLCtx; 1374 1497 } … … 1376 1499 - (NSView *)parentView 1377 1500 { 1378 DEBUG_FUNC_ENTER(); 1379 DEBUG_FUNC_LEAVE(); 1501 COCOA_LOG_FLOW(("%s: self=%p returns %p\n", __PRETTY_FUNCTION__, (void *)self, (void *)m_pParentView)); 1380 1502 return m_pParentView; 1381 1503 } … … 1383 1505 - (void)setParentView:(NSView *)pView 1384 1506 { 1385 DEBUG_FUNC_ENTER(); 1386 DEBUG_MSG(("OVIW(%p): setParentView: new view: %p\n", (void *)self, (void *)pView)); 1507 COCOA_LOG_FLOW(("%s: self=%p pView=%p (old=%p)\n", __PRETTY_FUNCTION__, (void *)self, (void *)pView, m_pParentView)); 1387 1508 1388 1509 m_pParentView = pView; 1389 1510 1390 DEBUG_FUNC_LEAVE();1511 COCOA_LOG_FLOW(("%s: returns\n", __PRETTY_FUNCTION__)); 1391 1512 } 1392 1513 1393 1514 - (void)setOverlayWin:(NSWindow *)pWin 1394 1515 { 1395 DEBUG_FUNC_ENTER(); 1396 DEBUG_MSG(("OVIW(%p): setOverlayWin: new win: %p\n", (void *)self, (void *)pWin)); 1516 COCOA_LOG_FLOW(("%s: self=%p pWin=%p (old=%p)\n", __PRETTY_FUNCTION__, (void *)self, (void *)pWin, m_pOverlayWin)); 1397 1517 1398 1518 m_pOverlayWin = pWin; 1399 1519 1400 DEBUG_FUNC_LEAVE();1520 COCOA_LOG_FLOW(("%s: returns\n", __PRETTY_FUNCTION__)); 1401 1521 } 1402 1522 1403 1523 - (NSWindow *)overlayWin 1404 1524 { 1405 DEBUG_FUNC_ENTER(); 1406 DEBUG_FUNC_LEAVE(); 1525 COCOA_LOG_FLOW(("%s: self=%p returns %p\n", __PRETTY_FUNCTION__, (void *)self, (void *)m_pOverlayWin)); 1407 1526 return m_pOverlayWin; 1408 1527 } … … 1410 1529 - (void)vboxSetPosUI:(NSPoint)pos 1411 1530 { 1412 DEBUG_FUNC_ENTER(); 1531 COCOA_LOG_FLOW(("%s: self=%p pos=%d,%d (old pos=%d,%d)\n", __PRETTY_FUNCTION__, (void *)self, (int)pos.x, (int)pos.y, 1532 (int)m_Pos.x, (int)m_Pos.y)); 1413 1533 1414 1534 m_Pos = pos; … … 1417 1537 [self vboxReshapePerform]; 1418 1538 1419 DEBUG_FUNC_LEAVE();1539 COCOA_LOG_FLOW(("%s: returns\n", __PRETTY_FUNCTION__)); 1420 1540 } 1421 1541 1422 1542 - (void)vboxSetPosUIObj:(NSValue *)pPos 1423 1543 { 1424 DEBUG_FUNC_ENTER(); 1544 COCOA_LOG_FLOW(("%s: self=%p pPos=%p (%d,%d) (old pos=%d,%d)\n", __PRETTY_FUNCTION__, (void *)self, pPos, 1545 (int)[pPos pointValue].x, (int)[pPos pointValue].y, (int)m_Pos.x, (int)m_Pos.y)); 1425 1546 1426 1547 NSPoint pos = [pPos pointValue]; 1427 1548 [self vboxSetPosUI:pos]; 1428 1549 1429 DEBUG_FUNC_LEAVE();1550 COCOA_LOG_FLOW(("%s: returns\n", __PRETTY_FUNCTION__)); 1430 1551 } 1431 1552 1432 1553 - (void)vboxSetPos:(NSPoint)pos 1433 1554 { 1434 DEBUG_FUNC_ENTER();1435 1436 DEBUG_MSG(("OVIW(%p): vboxSetPos: new pos: %d, %d\n", (void *)self, (int)pos.x, (int)pos.y)); 1555 COCOA_LOG_FLOW(("%s: self=%p pos=%d,%d (old pos=%d,%d)\n", __PRETTY_FUNCTION__, (void *)self, (int)pos.x, (int)pos.y, 1556 (int)m_Pos.x, (int)m_Pos.y)); 1557 1437 1558 VBoxMainThreadTaskRunner *pRunner = [VBoxMainThreadTaskRunner globalInstance]; 1438 1559 NSValue *pPos = [NSValue valueWithPoint:pos]; 1439 1560 [pRunner addObj:self selector:@selector(vboxSetPosUIObj:) arg:pPos]; 1440 1561 1441 DEBUG_FUNC_LEAVE();1562 COCOA_LOG_FLOW(("%s: returns\n", __PRETTY_FUNCTION__)); 1442 1563 } 1443 1564 1444 1565 - (NSPoint)pos 1445 1566 { 1446 DEBUG_FUNC_ENTER(); 1447 DEBUG_FUNC_LEAVE(); 1567 COCOA_LOG_FLOW(("%s: self=%p returns %d,%d\n", __PRETTY_FUNCTION__, (void *)self, (int)m_Pos.x, (int)m_Pos.y)); 1448 1568 return m_Pos; 1449 1569 } … … 1451 1571 - (bool)isEverSized 1452 1572 { 1453 DEBUG_FUNC_ENTER(); 1454 DEBUG_FUNC_LEAVE(); 1573 COCOA_LOG_FLOW(("%s: self=%p returns %d\n", __PRETTY_FUNCTION__, (void *)self, m_fEverSized)); 1455 1574 return m_fEverSized; 1456 1575 } … … 1458 1577 - (void)vboxDestroy 1459 1578 { 1460 DEBUG_FUNC_ENTER();1579 COCOA_LOG_FLOW(("%s: self=%p\n", __PRETTY_FUNCTION__, (void *)self)); 1461 1580 BOOL fIsMain = [NSThread isMainThread]; 1462 1581 NSWindow *pWin = nil; … … 1498 1617 renderspuWinRelease(m_pWinInfo); 1499 1618 1500 DEBUG_FUNC_LEAVE();1619 COCOA_LOG_FLOW(("%s: returns\n", __PRETTY_FUNCTION__)); 1501 1620 } 1502 1621 1503 1622 - (void)vboxSetSizeUIObj:(NSValue *)pSize 1504 1623 { 1505 DEBUG_FUNC_ENTER(); 1624 COCOA_LOG_FLOW(("%s: self=%p pSize=%p (%d,%d)\n", __PRETTY_FUNCTION__, (void *)self, (void *)pSize, 1625 (int)[pSize sizeValue].width, (int)[pSize sizeValue].height)); 1626 1506 1627 NSSize size = [pSize sizeValue]; 1507 1628 [self vboxSetSizeUI:size]; 1508 DEBUG_FUNC_LEAVE(); 1629 1630 COCOA_LOG_FLOW(("%s: returns\n", __PRETTY_FUNCTION__)); 1509 1631 } 1510 1632 1511 1633 - (void)vboxSetSizeUI:(NSSize)size 1512 1634 { 1513 DEBUG_FUNC_ENTER();1635 COCOA_LOG_FLOW(("%s: self=%p size=%d,%d\n", __PRETTY_FUNCTION__, (void *)self, (int)size.width, (int)size.height)); 1514 1636 1515 1637 m_Size = size; … … 1522 1644 [self vboxTryDrawUI]; 1523 1645 1524 DEBUG_FUNC_LEAVE();1646 COCOA_LOG_FLOW(("%s: returns\n", __PRETTY_FUNCTION__)); 1525 1647 } 1526 1648 1527 1649 - (void)vboxSetSize:(NSSize)size 1528 1650 { 1529 DEBUG_FUNC_ENTER();1651 COCOA_LOG_FLOW(("%s: self=%p size=%d,%d\n", __PRETTY_FUNCTION__, (void *)self, (int)size.width, (int)size.height)); 1530 1652 1531 1653 VBoxMainThreadTaskRunner *pRunner = [VBoxMainThreadTaskRunner globalInstance]; … … 1533 1655 [pRunner addObj:self selector:@selector(vboxSetSizeUIObj:) arg:pSize]; 1534 1656 1535 DEBUG_FUNC_LEAVE();1657 COCOA_LOG_FLOW(("%s: returns\n", __PRETTY_FUNCTION__)); 1536 1658 } 1537 1659 1538 1660 - (NSSize)size 1539 1661 { 1540 DEBUG_FUNC_ENTER(); 1541 DEBUG_FUNC_LEAVE(); 1662 COCOA_LOG_FLOW(("%s: self=%p returns %d,%d\n", __PRETTY_FUNCTION__, (void *)self, (int)m_Size.width, (int)m_Size.height)); 1542 1663 return m_Size; 1543 1664 } … … 1545 1666 - (void)updateViewportCS 1546 1667 { 1547 DEBUG_FUNC_ENTER(); 1548 DEBUG_MSG(("OVIW(%p): updateViewport\n", (void *)self)); 1668 COCOA_LOG_FLOW(("%s: self=%p\n", __PRETTY_FUNCTION__, (void *)self)); 1549 1669 1550 1670 /* Update the viewport for our OpenGL view. */ … … 1555 1675 /* Clear background to transparent. */ 1556 1676 glClearColor(0.0f, 0.0f, 0.0f, 0.0f); 1557 DEBUG_FUNC_LEAVE(); 1677 1678 COCOA_LOG_FLOW(("%s: returns\n", __PRETTY_FUNCTION__)); 1558 1679 } 1559 1680 1560 1681 - (void)vboxReshapeOnResizePerform 1561 1682 { 1562 DEBUG_FUNC_ENTER();1683 COCOA_LOG_FLOW(("%s: self=%p\n", __PRETTY_FUNCTION__, (void *)self)); 1563 1684 1564 1685 [self vboxReshapePerform]; … … 1581 1702 #endif 1582 1703 1583 DEBUG_FUNC_LEAVE();1704 COCOA_LOG_FLOW(("%s: returns\n", __PRETTY_FUNCTION__)); 1584 1705 } 1585 1706 1586 1707 - (void)vboxReshapeOnReparentPerform 1587 1708 { 1588 DEBUG_FUNC_ENTER();1709 COCOA_LOG_FLOW(("%s: self=%p\n", __PRETTY_FUNCTION__, (void *)self)); 1589 1710 [self createDockTile]; 1590 DEBUG_FUNC_LEAVE();1711 COCOA_LOG_FLOW(("%s: returns\n", __PRETTY_FUNCTION__)); 1591 1712 } 1592 1713 1593 1714 - (void)vboxReshapePerform 1594 1715 { 1595 DEBUG_FUNC_ENTER();1716 COCOA_LOG_FLOW(("%s: self=%p - m_DockTileView=%p\n", __PRETTY_FUNCTION__, (void *)self, (void *)m_DockTileView)); 1596 1717 NSRect parentFrame = NSZeroRect; 1597 1718 NSPoint parentPos = NSZeroPoint; … … 1599 1720 NSRect childFrame = NSZeroRect; 1600 1721 NSRect newFrame = NSZeroRect; 1601 1602 DEBUG_MSG(("OVIW(%p): vboxReshapePerform\n", (void *)self));1603 1722 1604 1723 parentFrame = [m_pParentView frame]; … … 1678 1797 } 1679 1798 1680 DEBUG_FUNC_LEAVE();1799 COCOA_LOG_FLOW(("%s: returns\n", __PRETTY_FUNCTION__)); 1681 1800 } 1682 1801 1683 1802 - (void)createDockTile 1684 1803 { 1685 DEBUG_FUNC_ENTER();1804 COCOA_LOG_FLOW(("%s: self=%p\n", __PRETTY_FUNCTION__, (void *)self)); 1686 1805 NSView *pDockScreen = nil; 1687 1806 … … 1698 1817 } 1699 1818 1700 DEBUG_FUNC_LEAVE();1819 COCOA_LOG_FLOW(("%s: returns - m_DockTileView\n", __PRETTY_FUNCTION__, (void *)m_DockTileView)); 1701 1820 } 1702 1821 1703 1822 - (void)deleteDockTile 1704 1823 { 1705 DEBUG_FUNC_ENTER(); 1824 COCOA_LOG_FLOW(("%s: self=%p - m_DockTileView=%p\n", __PRETTY_FUNCTION__, (void *)self, (void *)m_DockTileView)); 1825 1706 1826 if (m_DockTileView != nil) 1707 1827 { … … 1710 1830 m_DockTileView = nil; 1711 1831 } 1712 DEBUG_FUNC_LEAVE(); 1832 1833 COCOA_LOG_FLOW(("%s: returns\n", __PRETTY_FUNCTION__)); 1713 1834 } 1714 1835 1715 1836 - (void)makeCurrentFBO 1716 1837 { 1717 DEBUG_MSG(("OVIW(%p): makeCurrentFBO\n", (void *)self));1838 COCOA_LOG_FLOW(("%s: self=%p\n", __PRETTY_FUNCTION__, (void *)self)); 1718 1839 1719 1840 if (m_pGLCtx) … … 1727 1848 DEBUG_CHECK_GL_ERROR(); 1728 1849 } 1850 1729 1851 /* 1730 1852 if ([NSOpenGLContext currentContext] != m_pGLCtx) … … 1746 1868 } 1747 1869 } 1870 1871 COCOA_LOG_FLOW(("%s: returns\n", __PRETTY_FUNCTION__)); 1748 1872 } 1749 1873 1750 1874 - (bool)vboxSharedCtxCreate 1751 1875 { 1752 DEBUG_FUNC_ENTER(); 1753 GLint opaque = 0; 1754 NSOpenGLContext *pSharedGLCtx; 1755 NSOpenGLPixelFormat *pPixelFormat; 1876 COCOA_LOG_FLOW(("%s: self=%p\n", __PRETTY_FUNCTION__, (void *)self)); 1756 1877 1757 1878 if (m_pSharedGLCtx) 1758 1879 { 1759 DEBUG_FUNC_LEAVE();1880 COCOA_LOG_FLOW(("%s: returns true (m_pSharedGLCtx=%p)\n", __PRETTY_FUNCTION__, (void *)m_pSharedGLCtx)); 1760 1881 return true; 1761 1882 } 1762 1883 1763 1884 Assert(!m_pBlitter); 1764 m_pBlitter = RTMemAlloc(sizeof 1885 m_pBlitter = RTMemAlloc(sizeof(*m_pBlitter)); 1765 1886 if (RT_UNLIKELY(!m_pBlitter)) 1766 1887 { 1767 1888 DEBUG_WARN(("m_pBlitter allocation failed")); 1768 DEBUG_FUNC_LEAVE();1889 COCOA_LOG_FLOW(("%s: returns false - m_pBlitter allocation failed\n", __PRETTY_FUNCTION__)); 1769 1890 return false; 1770 1891 } 1771 1892 1772 int rc = CrBltInit(m_pBlitter, NULL, false, false, &render_spu.GlobalShaders, &render_spu.blitterDispatch); 1893 int rc = CrBltInit(m_pBlitter, NULL, false /*fCreateNewCtx*/, false /*fForceDrawBlt*/, 1894 #ifdef IN_VMSVGA3D 1895 NULL /** @todo */, NULL /** @todo */ 1896 #else 1897 &render_spu.GlobalShaders, &render_spu.blitterDispatch 1898 #endif 1899 ); 1773 1900 if (RT_FAILURE(rc)) 1774 1901 { … … 1776 1903 RTMemFree(m_pBlitter); 1777 1904 m_pBlitter = NULL; 1778 DEBUG_FUNC_LEAVE(); 1905 1906 COCOA_LOG_FLOW(("%s: returns false - CrBltInit failed with rc=%Rrc\n", __PRETTY_FUNCTION__, rc)); 1779 1907 return false; 1780 1908 } 1781 1909 1782 DEBUG_MSG(("blitter created successfully for view 0x%p\n", (void *)self));1910 COCOA_LOG_FLOW(("%s: blitter (%p) created successfully for view 0x%p\n", (void *)m_pBlitter, (void *)self)); 1783 1911 1784 1912 /* Create a shared context out of the main context. Use the same pixel format. */ 1785 pPixelFormat = [(OverlayOpenGLContext *)m_pGLCtx openGLPixelFormat];1786 pSharedGLCtx = [[NSOpenGLContext alloc] initWithFormat:pPixelFormat shareContext:m_pGLCtx];1913 NSOpenGLPixelFormat *pPixelFormat = [(OverlayOpenGLContext *)m_pGLCtx openGLPixelFormat]; 1914 NSOpenGLContext *pSharedGLCtx = [[NSOpenGLContext alloc] initWithFormat:pPixelFormat shareContext:m_pGLCtx]; 1787 1915 1788 1916 /* Set the new context as non opaque */ 1917 GLint opaque = 0; 1789 1918 [pSharedGLCtx setValues:&opaque forParameter:NSOpenGLCPSurfaceOpacity]; 1790 1919 … … 1795 1924 m_pSharedGLCtx = pSharedGLCtx; 1796 1925 1797 DEBUG_FUNC_LEAVE();1926 COCOA_LOG_FLOW(("%s: returns true - new m_pSharedGLCtx=%p\n", __PRETTY_FUNCTION__, (void *)m_pSharedGLCtx)); 1798 1927 return true; 1799 1928 } … … 1801 1930 - (void)vboxTryDraw 1802 1931 { 1932 COCOA_LOG_FLOW(("%s: self=%p\n", __PRETTY_FUNCTION__, (void *)self)); 1933 1803 1934 glFlush(); 1804 1935 1805 1936 /* Issue to the gui thread. */ 1806 DEBUG_MSG(("My[%p]: Draw\n", self));1807 1937 [self performSelectorOnMainThread:@selector(vboxTryDrawUI) withObject:nil waitUntilDone:NO]; 1938 1939 COCOA_LOG_FLOW(("%s: returns\n", __PRETTY_FUNCTION__)); 1808 1940 } 1809 1941 1810 1942 - (void)vboxSetVisible:(GLboolean)fVisible 1811 1943 { 1812 DEBUG_FUNC_ENTER();1944 COCOA_LOG_FLOW(("%s: self=%p fVisible=%d\n", __PRETTY_FUNCTION__, (void *)self, fVisible)); 1813 1945 1814 1946 VBoxMainThreadTaskRunner *pRunner = [VBoxMainThreadTaskRunner globalInstance]; 1815 NSNumber *pVisObj = [NSNumber numberWithBool:fVisible];1947 NSNumber *pVisObj = [NSNumber numberWithBool:fVisible]; 1816 1948 [pRunner addObj:self selector:@selector(vboxSetVisibleUIObj:) arg:pVisObj]; 1817 1949 1818 DEBUG_FUNC_LEAVE();1950 COCOA_LOG_FLOW(("%s: returns\n", __PRETTY_FUNCTION__)); 1819 1951 } 1820 1952 1821 1953 - (void)vboxSetVisibleUI:(GLboolean)fVisible 1822 1954 { 1823 DEBUG_FUNC_ENTER(); 1955 COCOA_LOG_FLOW(("%s: self=%p fVisible=%d\n", __PRETTY_FUNCTION__, (void *)self, fVisible)); 1956 1824 1957 [self setHidden: !fVisible]; 1825 DEBUG_FUNC_LEAVE(); 1826 } 1827 1828 - (void)vboxSetVisibleUIObj:(NSNumber*)pVisible 1829 { 1830 DEBUG_FUNC_ENTER(); 1831 BOOL fVisible = [pVisible boolValue]; 1958 1959 COCOA_LOG_FLOW(("%s: returns\n", __PRETTY_FUNCTION__)); 1960 } 1961 1962 - (void)vboxSetVisibleUIObj:(NSNumber *)pVisibleObj 1963 { 1964 COCOA_LOG_FLOW(("%s: self=%p pVisibleObj=%p(%d)\n", __PRETTY_FUNCTION__, 1965 (void *)self, (void *)pVisibleObj, [pVisibleObj boolValue])); 1966 1967 BOOL fVisible = [pVisibleObj boolValue]; 1832 1968 [self vboxSetVisibleUI:fVisible]; 1833 DEBUG_FUNC_LEAVE(); 1969 1970 COCOA_LOG_FLOW(("%s: returns\n", __PRETTY_FUNCTION__)); 1834 1971 } 1835 1972 1836 1973 - (void)vboxReparent:(NSView *)pParentView 1837 1974 { 1838 DEBUG_FUNC_ENTER();1839 1975 COCOA_LOG_FLOW(("%s: self=%p pParentView=%p\n", __PRETTY_FUNCTION__, (void *)self, (void *)pParentView)); 1976 1840 1977 VBoxMainThreadTaskRunner *pRunner = [VBoxMainThreadTaskRunner globalInstance]; 1841 1978 [pRunner addObj:self selector:@selector(vboxReparentUI:) arg:pParentView]; 1842 1979 1843 DEBUG_FUNC_LEAVE();1980 COCOA_LOG_FLOW(("%s: returns\n", __PRETTY_FUNCTION__)); 1844 1981 } 1845 1982 1846 1983 - (void)vboxReparentUI:(NSView *)pParentView 1847 1984 { 1848 DEBUG_FUNC_ENTER();1985 COCOA_LOG_FLOW(("%s: self=%p pParentView=%p\n", __PRETTY_FUNCTION__, (void *)self, (void *)pParentView)); 1849 1986 1850 1987 /* Make sure the window is removed from any previous parent window. */ … … 1865 2002 } 1866 2003 1867 DEBUG_FUNC_LEAVE();2004 COCOA_LOG_FLOW(("%s: returns\n", __PRETTY_FUNCTION__)); 1868 2005 } 1869 2006 1870 2007 - (void)vboxTryDrawUI 1871 2008 { 2009 COCOA_LOG_FLOW(("%s: self=%p\n", __PRETTY_FUNCTION__, (void *)self)); 2010 2011 if ([self isHidden]) 2012 { 2013 COCOA_LOG_FLOW(("%s: returns - request to draw on a hidden view\n", __PRETTY_FUNCTION__)); 2014 return; 2015 } 2016 2017 if ([[self overlayWin] parentWindow] == nil) 2018 { 2019 COCOA_LOG_FLOW(("%s: returns - request to draw a view w/o a parent\n", __PRETTY_FUNCTION__)); 2020 return; 2021 } 2022 1872 2023 const VBOXVR_SCR_COMPOSITOR *pCompositor; 1873 DEBUG_MSG(("My[%p]: DrawUI\n", self));1874 1875 if ([self isHidden])1876 {1877 DEBUG_INFO(("request to draw on a hidden view"));1878 return;1879 }1880 1881 if ([[self overlayWin] parentWindow] == nil)1882 {1883 DEBUG_INFO(("request to draw a view w/o a parent"));1884 return;1885 }1886 1887 2024 int rc = renderspuVBoxCompositorLock(m_pWinInfo, &pCompositor); 1888 2025 if (RT_FAILURE(rc)) 1889 2026 { 1890 DEBUG_WARN(("renderspuVBoxCompositorLock failed\n"));2027 COCOA_LOG_FLOW(("%s: returns - renderspuVBoxCompositorLock failed (%Rrc)\n", __PRETTY_FUNCTION__, rc)); 1891 2028 return; 1892 2029 } 1893 2030 2031 #ifndef IN_VMSVGA3D 1894 2032 if (!pCompositor && !m_fCleanupNeeded) 1895 2033 { 1896 DEBUG_MSG(("My[%p]: noCompositorUI\n", self));1897 2034 renderspuVBoxCompositorUnlock(m_pWinInfo); 2035 COCOA_LOG_FLOW(("%s: returns - noCompositorUI\n", __PRETTY_FUNCTION__)); 1898 2036 return; 1899 2037 } 2038 #endif 1900 2039 1901 2040 VBOXVR_SCR_COMPOSITOR TmpCompositor; … … 1910 2049 if (![self vboxSharedCtxCreate]) 1911 2050 { 1912 DEBUG_WARN(("vboxSharedCtxCreate failed\n"));2051 COCOA_LOG_FLOW(("%s: returns - vboxSharedCtxCreate failed\n", __PRETTY_FUNCTION__)); 1913 2052 return; 1914 2053 } … … 1920 2059 Assert(!m_fCleanupNeeded); 1921 2060 if (!pCompositor) 2061 { 2062 COCOA_LOG_FLOW(("%s: returns - Failed to reacquire compositor\n", __PRETTY_FUNCTION__)); 1922 2063 return; 2064 } 1923 2065 } 1924 2066 } 1925 2067 else 1926 2068 { 1927 DEBUG_MSG((" My[%p]: NeedCleanup\n", self));2069 DEBUG_MSG(("%s: NeedCleanup\n", __PRETTY_FUNCTION__)); 1928 2070 Assert(m_fCleanupNeeded); 1929 2071 CrVrScrCompositorInit(&TmpCompositor, NULL); … … 1933 2075 if ([self lockFocusIfCanDraw]) 1934 2076 { 2077 COCOA_LOG_FLOW(("%s: Calling vboxPresent\n", __PRETTY_FUNCTION__)); 1935 2078 [self vboxPresent:pCompositor]; 1936 2079 [self unlockFocus]; 1937 2080 } 2081 #ifndef IN_VMSVGA3D /** @todo VMSVGA3 */ 1938 2082 else if (!m_pWinInfo->visible) 1939 2083 { 1940 DEBUG_MSG(("My[%p]: NotVisible\n", self));2084 COCOA_LOG_FLOW(("%s: NotVisible\n", __PRETTY_FUNCTION__)); 1941 2085 m_fCleanupNeeded = false; 1942 2086 } 2087 #endif 1943 2088 else 1944 2089 { 1945 DEBUG_MSG(("My[%p]: Reschedule\n", self));2090 COCOA_LOG_FLOW(("%s: Reschedule\n", __PRETTY_FUNCTION__)); 1946 2091 [NSTimer scheduledTimerWithTimeInterval:0.1 target:self selector:@selector(vboxTryDrawUI) userInfo:nil repeats:NO]; 1947 2092 } 1948 2093 1949 2094 renderspuVBoxCompositorUnlock(m_pWinInfo); 2095 COCOA_LOG_FLOW(("%s: returns\n", __PRETTY_FUNCTION__)); 1950 2096 } 1951 2097 1952 2098 - (void)swapFBO 1953 2099 { 1954 DEBUG_FUNC_ENTER();2100 COCOA_LOG_FLOW(("%s: self=%p - m_pGLCtx=%p\n", __PRETTY_FUNCTION__, (void *)self, (void *)m_pGLCtx)); 1955 2101 [m_pGLCtx flushBuffer]; 1956 DEBUG_FUNC_LEAVE(); 1957 } 1958 1959 - (void)vboxPresent:(const VBOXVR_SCR_COMPOSITOR*)pCompositor 1960 { 2102 COCOA_LOG_FLOW(("%s: returns\n", __PRETTY_FUNCTION__)); 2103 } 2104 2105 - (void)vboxPresent:(PCVBOXVR_SCR_COMPOSITOR)pCompositor 2106 { 2107 COCOA_LOG_FLOW(("%s: self=%p pCompositor=%p\n", __PRETTY_FUNCTION__, (void *)self, (void *)pCompositor)); 2108 /*DEBUG_MSG(("OVIW(%p): renderFBOToView\n", (void *)self));*/ 2109 AssertPtr(pCompositor); 2110 1961 2111 VBOX_CR_RENDER_CTX_INFO CtxInfo; 1962 DEBUG_MSG(("OVIW(%p): renderFBOToView\n", (void *)self));1963 1964 Assert(pCompositor);1965 1966 2112 vboxCtxEnter(m_pSharedGLCtx, &CtxInfo); 1967 2113 … … 1969 2115 1970 2116 vboxCtxLeave(&CtxInfo); 1971 } 1972 1973 - (void)vboxPresentCS:(const VBOXVR_SCR_COMPOSITOR *)pCompositor 1974 { 2117 COCOA_LOG_FLOW(("%s: returns\n", __PRETTY_FUNCTION__)); 2118 } 2119 2120 - (void)vboxPresentCS:(PCVBOXVR_SCR_COMPOSITOR)pCompositor 2121 { 2122 COCOA_LOG_FLOW(("%s: self=%p pCompositor=%p\n", __PRETTY_FUNCTION__, (void *)self, (void *)pCompositor)); 1975 2123 if ([m_pSharedGLCtx view] != self) 1976 2124 { 1977 DEBUG_MSG(("OVIW(%p): not current view of shared ctx! Switching ...\n", (void *)self)); 2125 COCOA_LOG_FLOW(("%s: Not current view of shared ctx! Switching... (self=%p, view=%p, m_pSharedGLCtx)\n", 2126 __PRETTY_FUNCTION__, (void *)self, (void *)[m_pSharedGLCtx view], (void *)m_pSharedGLCtx)); 1978 2127 [m_pSharedGLCtx setView: self]; 1979 2128 m_fNeedViewportUpdate = true; … … 1998 2147 [m_pSharedGLCtx flushBuffer]; 1999 2148 #endif 2149 2150 COCOA_LOG_FLOW(("%s: returns\n", __PRETTY_FUNCTION__)); 2000 2151 } 2001 2152 … … 2024 2175 } 2025 2176 2026 - (void)vboxPresentToViewCS:( const VBOXVR_SCR_COMPOSITOR*)pCompositor2177 - (void)vboxPresentToViewCS:(PCVBOXVR_SCR_COMPOSITOR)pCompositor 2027 2178 { 2028 2179 NSRect r = [self frame]; 2029 float xStretch; 2030 float yStretch; 2031 DEBUG_MSG(("OVIW(%p): rF2V frame: [%i, %i, %i, %i]\n", (void *)self, (int)r.origin.x, (int)r.origin.y, (int)r.size.width, (int)r.size.height)); 2180 COCOA_LOG_FLOW(("%s: self=%p - r={%d,%d %d,%d}\n", __PRETTY_FUNCTION__, (void *)self, 2181 (int)r.origin.x, (int)r.origin.y, (int)r.size.width, (int)r.size.height)); 2032 2182 2033 2183 #if 1 /* Set to 0 to see the docktile instead of the real output */ … … 2045 2195 m_fDataVisible = false; 2046 2196 2197 float xStretch; 2198 float yStretch; 2047 2199 CrVrScrCompositorGetStretching(pCompositor, &xStretch, &yStretch); 2048 2200 … … 2116 2268 glBindFramebufferEXT(GL_FRAMEBUFFER_EXT, 0); 2117 2269 [m_pSharedGLCtx flushBuffer]; 2118 } 2119 2120 - (void)presentComposition:(const VBOXVR_SCR_COMPOSITOR_ENTRY *)pChangedEntry 2121 { 2270 2271 COCOA_LOG_FLOW(("%s: returns\n", __PRETTY_FUNCTION__)); 2272 } 2273 2274 - (void)presentComposition:(PCVBOXVR_SCR_COMPOSITOR_ENTRY)pChangedEntry 2275 { 2276 COCOA_LOG_FLOW(("%s: self=%p pChangedEntry=%p\n", __PRETTY_FUNCTION__, (void *)self, (void *)pChangedEntry)); 2122 2277 [self vboxTryDraw]; 2123 2278 } … … 2125 2280 - (void)vboxBlitterSyncWindow 2126 2281 { 2282 COCOA_LOG_FLOW(("%s: self=%p\n", __PRETTY_FUNCTION__, (void *)self)); 2127 2283 CR_BLITTER_WINDOW WinInfo; 2128 2284 NSRect r; … … 2149 2305 static int g_cVBoxTgaCtr = 0; 2150 2306 #endif 2151 - (void)vboxPresentToDockTileCS:(const VBOXVR_SCR_COMPOSITOR*)pCompositor 2152 { 2307 - (void)vboxPresentToDockTileCS:(PCVBOXVR_SCR_COMPOSITOR)pCompositor 2308 { 2309 COCOA_LOG_FLOW(("%s: self=%p pCompositor=%p\n", __PRETTY_FUNCTION__, (void *)self, (void *)pCompositor)); 2153 2310 NSRect r = [self frame]; 2154 2311 NSRect rr = NSZeroRect; 2155 GLint i = 0;2156 2312 NSDockTile *pDT = nil; 2157 2313 float xStretch; … … 2207 2363 if (RT_SUCCESS(rc)) 2208 2364 { 2209 intrc = CrBltEnter(m_pBlitter);2365 rc = CrBltEnter(m_pBlitter); 2210 2366 if (RT_SUCCESS(rc)) 2211 2367 { … … 2266 2422 glBindFramebufferEXT(GL_READ_FRAMEBUFFER_EXT, 0); 2267 2423 glReadBuffer(GL_BACK); 2424 2268 2425 /* Here the magic of reading the FBO content in our own buffer 2269 2426 * happens. We have to lock this access, in the case the dock … … 2293 2450 - (void)clearVisibleRegions 2294 2451 { 2295 DEBUG_FUNC_ENTER();2296 2452 if (m_paClipRects) 2297 2453 { … … 2300 2456 } 2301 2457 m_cClipRects = 0; 2302 DEBUG_FUNC_LEAVE();2303 2458 } 2304 2459 … … 2314 2469 } 2315 2470 2316 - (void)setVisibleRegions:(GLint)cRects paRects:(const GLint *)paRects2317 { 2318 DEBUG_FUNC_ENTER();2471 - (void)setVisibleRegions:(GLint)cRects paRects:(const GLint *)paRects 2472 { 2473 COCOA_LOG_FLOW(("%s: self=%p cRects=%d paRects=%p\n", __PRETTY_FUNCTION__, (void *)self, cRects, (void *)paRects)); 2319 2474 GLint cOldRects = m_cClipRects; 2320 2321 DEBUG_MSG_1(("OVIW(%p): setVisibleRegions: cRects=%d\n", (void *)self, cRects));2322 2475 2323 2476 [self clearVisibleRegions]; … … 2331 2484 #endif 2332 2485 2333 m_paClipRects = (GLint*)RTMemAlloc(sizeof(GLint) * 4 * cRects); 2334 m_cClipRects = cRects; 2335 memcpy(m_paClipRects, paRects, sizeof(GLint) * 4 * cRects); 2336 } 2337 2338 DEBUG_FUNC_LEAVE(); 2486 m_paClipRects = (GLint *)RTMemDup(paRects, sizeof(GLint) * 4 * cRects); 2487 m_cClipRects = cRects; 2488 } 2489 2490 COCOA_LOG_FLOW(("%s: returns\n", __PRETTY_FUNCTION__)); 2339 2491 } 2340 2492 2341 2493 - (NSView *)dockTileScreen 2342 2494 { 2343 DEBUG_FUNC_ENTER();2344 NSView * contentView = [[[NSApplication sharedApplication] dockTile] contentView];2345 NSView * screenContent = nil;2495 COCOA_LOG_FLOW(("%s: self=%p\n", __PRETTY_FUNCTION__, (void *)self)); 2496 NSView *pContentView = [[[NSApplication sharedApplication] dockTile] contentView]; 2497 NSView *pScreenContent = nil; 2346 2498 2347 2499 /* … … 2349 2501 * screen which is previewed in the dock. 2350 2502 */ 2351 if ([ contentView respondsToSelector:@selector(screenContentWithParentView:)])2352 screenContent = [contentView performSelector:@selector(screenContentWithParentView:) withObject:(id)m_pParentView];2503 if ([pContentView respondsToSelector:@selector(screenContentWithParentView:)]) 2504 pScreenContent = [pContentView performSelector:@selector(screenContentWithParentView:) withObject:(id)m_pParentView]; 2353 2505 /* 2354 2506 * If it fails, fall back to the old variant (VBox...). 2355 2507 */ 2356 else if ([ contentView respondsToSelector:@selector(screenContent)])2357 screenContent = [contentView performSelector:@selector(screenContent)];2358 2359 DEBUG_FUNC_LEAVE();2360 return screenContent;2508 else if ([pContentView respondsToSelector:@selector(screenContent)]) 2509 pScreenContent = [pContentView performSelector:@selector(screenContent)]; 2510 2511 COCOA_LOG_FLOW(("%s: returns %p (pContentView=%p)\n", __PRETTY_FUNCTION__, (void *)pScreenContent, (void *)pContentView)); 2512 return pScreenContent; 2361 2513 } 2362 2514 2363 2515 - (void)reshapeDockTile 2364 2516 { 2365 DEBUG_FUNC_ENTER();2517 COCOA_LOG_FLOW(("%s:\n", __PRETTY_FUNCTION__)); 2366 2518 NSRect newFrame = NSZeroRect; 2367 2368 2519 NSView *pView = [self dockTileScreen]; 2369 2520 if (pView != nil) … … 2387 2538 [m_DockTileView setFrame: newFrame]; 2388 2539 } 2389 DEBUG_FUNC_LEAVE(); 2540 COCOA_LOG_FLOW(("%s: returns - newFrame={%d,%d %d,%d} pView=%d\n", __PRETTY_FUNCTION__, (int)newFrame.origin.x, 2541 (int)newFrame.origin.y, (int)newFrame.size.width, (int)newFrame.size.height, (void *)pView)); 2390 2542 } 2391 2543 … … 2400 2552 void cocoaGLCtxCreate(NativeNSOpenGLContextRef *ppCtx, GLbitfield fVisParams, NativeNSOpenGLContextRef pSharedCtx) 2401 2553 { 2402 DEBUG_FUNC_ENTER(); 2554 COCOA_LOG_FLOW(("cocoaGLCtxCreate: ppCtx=%p fVisParams=%#x pSharedCtx=%p\n", (void *)ppCtx, fVisParams, (void *)pSharedCtx)); 2555 NSAutoreleasePool *pPool = [[NSAutoreleasePool alloc] init]; 2403 2556 NSOpenGLPixelFormat *pFmt = nil; 2404 2405 NSAutoreleasePool *pPool = [[NSAutoreleasePool alloc] init];2406 2557 2407 2558 NSOpenGLPixelFormatAttribute attribs[24] = … … 2415 2566 if (fVisParams & CR_ALPHA_BIT) 2416 2567 { 2417 DEBUG_MSG(("CR_ALPHA_BIT requested\n"));2568 COCOA_LOG_FLOW((" CR_ALPHA_BIT requested\n")); 2418 2569 attribs[i++] = NSOpenGLPFAAlphaSize; 2419 2570 attribs[i++] = 8; … … 2421 2572 if (fVisParams & CR_DEPTH_BIT) 2422 2573 { 2423 DEBUG_MSG(("CR_DEPTH_BIT requested\n"));2574 COCOA_LOG_FLOW((" CR_DEPTH_BIT requested\n")); 2424 2575 attribs[i++] = NSOpenGLPFADepthSize; 2425 2576 attribs[i++] = 24; … … 2427 2578 if (fVisParams & CR_STENCIL_BIT) 2428 2579 { 2429 DEBUG_MSG(("CR_STENCIL_BIT requested\n"));2580 COCOA_LOG_FLOW((" CR_STENCIL_BIT requested\n")); 2430 2581 attribs[i++] = NSOpenGLPFAStencilSize; 2431 2582 attribs[i++] = 8; … … 2433 2584 if (fVisParams & CR_ACCUM_BIT) 2434 2585 { 2435 DEBUG_MSG(("CR_ACCUM_BIT requested\n"));2586 COCOA_LOG_FLOW((" CR_ACCUM_BIT requested\n")); 2436 2587 attribs[i++] = NSOpenGLPFAAccumSize; 2437 2588 if (fVisParams & CR_ALPHA_BIT) … … 2442 2593 if (fVisParams & CR_MULTISAMPLE_BIT) 2443 2594 { 2444 DEBUG_MSG(("CR_MULTISAMPLE_BIT requested\n"));2595 COCOA_LOG_FLOW((" CR_MULTISAMPLE_BIT requested\n")); 2445 2596 attribs[i++] = NSOpenGLPFASampleBuffers; 2446 2597 attribs[i++] = 1; … … 2450 2601 if (fVisParams & CR_DOUBLE_BIT) 2451 2602 { 2452 DEBUG_MSG(("CR_DOUBLE_BIT requested\n"));2603 COCOA_LOG_FLOW((" CR_DOUBLE_BIT requested\n")); 2453 2604 attribs[i++] = NSOpenGLPFADoubleBuffer; 2454 2605 } … … 2456 2607 { 2457 2608 /* We don't support that. 2458 DEBUG_MSG(("CR_STEREO_BIT requested\n"));2609 COCOA_LOG_FLOW((" CR_STEREO_BIT requested\n")); 2459 2610 attribs[i++] = NSOpenGLPFAStereo; 2460 2611 */ … … 2463 2614 if (VBoxOglIsOfflineRenderingAppropriate()) 2464 2615 { 2465 DEBUG_MSG(("Offline rendering is enabled\n"));2616 COCOA_LOG_FLOW((" Offline rendering is enabled\n")); 2466 2617 attribs[i++] = NSOpenGLPFAAllowOfflineRenderers; 2467 2618 } … … 2484 2635 printf ("Couldn't enable MT OpenGL engine!\n"); 2485 2636 */ 2486 2487 DEBUG_MSG(("New context %X\n", (uint)*ppCtx));2488 }2637 } 2638 else 2639 *ppCtx = NULL; 2489 2640 2490 2641 [pPool release]; 2491 2492 DEBUG_FUNC_LEAVE(); 2642 COCOA_LOG_FLOW(("cocoaGLCtxDestroy: returns *ppCtx=%p\n", (void *)*ppCtx)); 2493 2643 } 2494 2644 2495 2645 void cocoaGLCtxDestroy(NativeNSOpenGLContextRef pCtx) 2496 2646 { 2497 DEBUG_FUNC_ENTER();2647 COCOA_LOG_FLOW(("cocoaGLCtxDestroy: pCtx=%p\n", (void *)pCtx)); 2498 2648 NSAutoreleasePool *pPool = [[NSAutoreleasePool alloc] init]; 2499 2649 … … 2502 2652 2503 2653 [pPool release]; 2504 DEBUG_FUNC_LEAVE();2654 COCOA_LOG_FLOW(("cocoaGLCtxDestroy: returns\n")); 2505 2655 } 2506 2656 … … 2510 2660 * 2511 2661 ********************************************************************************/ 2662 static OverlayView *vboxViewCreate(WindowInfo *pWinInfo, NativeNSViewRef pParentView) 2663 { 2664 COCOA_LOG_FLOW(("vboxViewCreate: pWinInfo=%p pParentView=%p\n", pWinInfo, (void *)pParentView)); 2665 2666 /* Create our worker view. */ 2667 OverlayView *pView = [[OverlayView alloc] initWithFrame:NSZeroRect 2668 thread:RTThreadSelf() 2669 parentView:pParentView 2670 winInfo:pWinInfo]; 2671 2672 if (pView) 2673 { 2674 /* We need a real window as container for the view */ 2675 [[OverlayWindow alloc] initWithParentView:pParentView overlayView:pView]; 2676 /* Return the freshly created overlay view */ 2677 COCOA_LOG_FLOW(("vboxViewCreate: returns %p\n", (void *)pView)); 2678 return pView; 2679 } 2680 2681 COCOA_LOG_FLOW(("vboxViewCreate: returns NULL\n")); 2682 return NULL; 2683 } 2684 2685 #ifndef IN_VMSVGA3D 2686 2512 2687 typedef struct CR_RCD_CREATEVIEW 2513 2688 { … … 2519 2694 } CR_RCD_CREATEVIEW; 2520 2695 2521 static OverlayView * vboxViewCreate(WindowInfo *pWinInfo, NativeNSViewRef pParentView)2522 {2523 DEBUG_FUNC_ENTER();2524 /* Create our worker view */2525 OverlayView* pView = [[OverlayView alloc] initWithFrame:NSZeroRect thread:RTThreadSelf() parentView:pParentView winInfo:pWinInfo];2526 2527 if (pView)2528 {2529 /* We need a real window as container for the view */2530 [[OverlayWindow alloc] initWithParentView:pParentView overlayView:pView];2531 /* Return the freshly created overlay view */2532 DEBUG_FUNC_LEAVE();2533 return pView;2534 }2535 2536 DEBUG_FUNC_LEAVE();2537 return NULL;2538 }2539 2540 2696 static DECLCALLBACK(void) vboxRcdCreateView(void *pvCb) 2541 2697 { 2542 DEBUG_FUNC_ENTER(); 2543 CR_RCD_CREATEVIEW * pCreateView = (CR_RCD_CREATEVIEW*)pvCb; 2698 CR_RCD_CREATEVIEW *pCreateView = (CR_RCD_CREATEVIEW *)pvCb; 2544 2699 pCreateView->pView = vboxViewCreate(pCreateView->pWinInfo, pCreateView->pParentView); 2545 DEBUG_FUNC_LEAVE(); 2546 } 2700 COCOA_LOG_FLOW(("vboxRcdCreateView: returns pView=%p\n", (void *)pCreateView->pView)); 2701 } 2702 2703 #endif /* !IN_VMSVGA3D */ 2547 2704 2548 2705 void cocoaViewCreate(NativeNSViewRef *ppView, WindowInfo *pWinInfo, NativeNSViewRef pParentView, GLbitfield fVisParams) 2549 2706 { 2550 DEBUG_FUNC_ENTER(); 2707 COCOA_LOG_FLOW(("cocoaViewCreate: ppView=%p pWinInfo=%p pParentView=%p fVisParams=%#x\n", 2708 (void *)ppView, (void *)pWinInfo, (void *)pParentView, fVisParams)); 2551 2709 NSAutoreleasePool *pPool = [[NSAutoreleasePool alloc] init]; 2552 2710 2711 /* make sure all tasks are run, to preserve the order */ 2553 2712 VBoxMainThreadTaskRunner *pRunner = [VBoxMainThreadTaskRunner globalInstance]; 2554 /* make sure all tasks are run, to preserve the order */2555 2713 [pRunner runTasksSyncIfPossible]; 2556 2714 2557 2715 renderspuWinRetain(pWinInfo); 2558 2716 2717 #ifndef IN_VMSVGA3D 2559 2718 if (renderspuCalloutAvailable()) 2560 2719 { … … 2568 2727 } 2569 2728 else 2570 { 2571 DEBUG_MSG(("no callout available on createWindow\n")); 2729 #endif 2730 { 2731 DEBUG_MSG_NOT_VMSVGA3D(("no callout available on createWindow\n")); 2572 2732 #if 0 2573 2733 dispatch_sync(dispatch_get_main_queue(), ^{ … … 2583 2743 2584 2744 [pPool release]; 2585 2586 DEBUG_FUNC_LEAVE(); 2745 COCOA_LOG_FLOW(("cocoaViewCreate: returns *ppView=%p\n", (void *)*ppView)); 2587 2746 } 2588 2747 2589 2748 void cocoaViewReparent(NativeNSViewRef pView, NativeNSViewRef pParentView) 2590 2749 { 2591 DEBUG_FUNC_ENTER();2750 COCOA_LOG_FLOW(("cocoaViewReparent: pView=%p pParentView=%p\n", (void *)pView, (void *)pParentView)); 2592 2751 NSAutoreleasePool *pPool = [[NSAutoreleasePool alloc] init]; 2593 2752 2594 OverlayView* pOView = (OverlayView*)pView; 2595 2753 OverlayView *pOView = (OverlayView *)pView; 2596 2754 if (pOView) 2597 {2598 2755 [pOView vboxReparent:pParentView]; 2599 }2600 2756 2601 2757 [pPool release]; 2602 2603 DEBUG_FUNC_LEAVE(); 2604 } 2605 2606 typedef struct CR_RCD_DESTROYVIEW 2607 { 2608 OverlayView *pView; 2609 } CR_RCD_DESTROYVIEW; 2610 2611 static DECLCALLBACK(void) vboxRcdDestroyView(void *pvCb) 2612 { 2613 DEBUG_FUNC_ENTER(); 2614 CR_RCD_DESTROYVIEW * pDestroyView = (CR_RCD_DESTROYVIEW*)pvCb; 2615 [pDestroyView->pView vboxDestroy]; 2616 DEBUG_FUNC_LEAVE(); 2758 COCOA_LOG_FLOW(("cocoaViewReparent: returns\n")); 2617 2759 } 2618 2760 2619 2761 void cocoaViewDestroy(NativeNSViewRef pView) 2620 2762 { 2621 DEBUG_FUNC_ENTER();2763 COCOA_LOG_FLOW(("cocoaViewDestroy: pView=%p\n", (void *)pView)); 2622 2764 NSAutoreleasePool *pPool = [[NSAutoreleasePool alloc] init]; 2623 2765 … … 2626 2768 2627 2769 [pPool release]; 2628 2629 DEBUG_FUNC_LEAVE(); 2770 COCOA_LOG_FLOW(("cocoaViewDestroy: returns\n")); 2630 2771 } 2631 2772 2632 2773 void cocoaViewShow(NativeNSViewRef pView, GLboolean fShowIt) 2633 2774 { 2634 DEBUG_FUNC_ENTER();2775 COCOA_LOG_FLOW(("cocoaViewShow: pView=%p fShowIt=%d\n", (void *)pView, fShowIt)); 2635 2776 NSAutoreleasePool *pPool = [[NSAutoreleasePool alloc] init]; 2636 2777 2637 [(OverlayView *)pView vboxSetVisible:fShowIt];2778 [(OverlayView *)pView vboxSetVisible:fShowIt]; 2638 2779 2639 2780 [pPool release]; 2640 DEBUG_FUNC_LEAVE();2781 COCOA_LOG_FLOW(("cocoaViewShow: returns\n")); 2641 2782 } 2642 2783 2643 2784 void cocoaViewDisplay(NativeNSViewRef pView) 2644 2785 { 2645 DEBUG_FUNC_ENTER();2786 COCOA_LOG_FLOW(("cocoaViewDisplay: pView=%p\n", (void *)pView)); 2646 2787 NSAutoreleasePool *pPool = [[NSAutoreleasePool alloc] init]; 2647 2788 2789 #ifndef IN_VMSVGA3D 2648 2790 DEBUG_WARN(("cocoaViewDisplay should never happen!\n")); 2649 2791 DEBUG_MSG_1(("cocoaViewDisplay %p\n", (void *)pView)); 2650 [(OverlayView*)pView swapFBO]; 2792 #endif 2793 [(OverlayView *)pView swapFBO]; 2651 2794 2652 2795 [pPool release]; 2653 2654 DEBUG_FUNC_LEAVE(); 2796 COCOA_LOG_FLOW(("cocoaViewDisplay: returns\n")); 2655 2797 } 2656 2798 2657 2799 void cocoaViewSetPosition(NativeNSViewRef pView, NativeNSViewRef pParentView, int x, int y) 2658 2800 { 2659 DEBUG_FUNC_ENTER();2801 COCOA_LOG_FLOW(("cocoaViewSetPosition: pView=%p pParentView=%p x=%d y=%d\n", (void *)pView, (void *)pParentView, x, y)); 2660 2802 NSAutoreleasePool *pPool = [[NSAutoreleasePool alloc] init]; 2661 2803 2662 [(OverlayView *)pView vboxSetPos:NSMakePoint(x, y)];2804 [(OverlayView *)pView vboxSetPos:NSMakePoint(x, y)]; 2663 2805 2664 2806 [pPool release]; 2665 2666 DEBUG_FUNC_LEAVE(); 2667 } 2668 2669 void cocoaViewSetSize(NativeNSViewRef pView, int w, int h) 2670 { 2671 DEBUG_FUNC_ENTER(); 2807 COCOA_LOG_FLOW(("cocoaViewSetPosition: returns\n")); 2808 } 2809 2810 void cocoaViewSetSize(NativeNSViewRef pView, int cx, int cy) 2811 { 2812 COCOA_LOG_FLOW(("cocoaViewSetSize: pView=%p cx=%d cy=%d\n", (void *)pView, cx, cy)); 2672 2813 NSAutoreleasePool *pPool = [[NSAutoreleasePool alloc] init]; 2673 2814 2674 [(OverlayView *)pView vboxSetSize:NSMakeSize(w, h)];2815 [(OverlayView *)pView vboxSetSize:NSMakeSize(cx, cy)]; 2675 2816 2676 2817 [pPool release]; 2677 2678 DEBUG_FUNC_LEAVE(); 2679 } 2818 COCOA_LOG_FLOW(("cocoaViewSetSize: returns\n")); 2819 } 2820 2821 #ifndef IN_VMSVGA3D 2680 2822 2681 2823 typedef struct CR_RCD_GETGEOMETRY … … 2687 2829 static DECLCALLBACK(void) vboxRcdGetGeomerty(void *pvUser) 2688 2830 { 2689 DEBUG_FUNC_ENTER(); 2690 CR_RCD_GETGEOMETRY * pGetGeometry = (CR_RCD_GETGEOMETRY *)pvUser; 2831 CR_RCD_GETGEOMETRY *pGetGeometry = (CR_RCD_GETGEOMETRY *)pvUser; 2691 2832 pGetGeometry->rect = [[pGetGeometry->pView window] frame]; 2692 DEBUG_FUNC_LEAVE(); 2693 } 2694 2695 void cocoaViewGetGeometry(NativeNSViewRef pView, int *pX, int *pY, int *pW, int *pH) 2696 { 2833 COCOA_LOG_FLOW(("vboxRcdGetGeomerty: (x,y)=(%d,%d) (cx,cy)=(%d,%d)\n", pGetGeometry->rect.origin.x, pGetGeometry->rect.origin.y, 2834 pGetGeometry->rect.size.width, pGetGeometry->rect.heigth)); 2835 } 2836 2837 #endif /* !IN_VMSVGA3D */ 2838 2839 void cocoaViewGetGeometry(NativeNSViewRef pView, int *px, int *py, int *pcx, int *pcy) 2840 { 2841 COCOA_LOG_FLOW(("cocoaViewGetGeometry: pView=%p px=%p py=%p pcx=%p pcy=%p\n", 2842 (void *)pView, (void *)px, (void *)py, (void *)pcx, (void *)pcy)); 2697 2843 NSAutoreleasePool *pPool; 2698 DEBUG_FUNC_ENTER();2699 2844 pPool = [[NSAutoreleasePool alloc] init]; 2700 2845 2846 /* make sure all tasks are run, to preserve the order */ 2847 VBoxMainThreadTaskRunner *pRunner = [VBoxMainThreadTaskRunner globalInstance]; 2848 [pRunner runTasksSyncIfPossible]; 2849 2701 2850 NSRect frame; 2702 VBoxMainThreadTaskRunner *pRunner = [VBoxMainThreadTaskRunner globalInstance]; 2703 /* make sure all tasks are run, to preserve the order */ 2704 [pRunner runTasksSyncIfPossible]; 2705 2706 2851 #ifndef IN_VMSVGA3D 2707 2852 if (renderspuCalloutAvailable()) 2708 2853 { … … 2713 2858 } 2714 2859 else 2715 { 2716 DEBUG_MSG(("no callout available on getGeometry\n")); 2860 #endif 2861 { 2862 DEBUG_MSG_NOT_VMSVGA3D(("no callout available on getGeometry\n")); 2717 2863 frame = [[pView window] frame]; 2718 2864 } 2719 2865 2720 *p X= frame.origin.x;2721 *p Y= frame.origin.y;2722 *p W= frame.size.width;2723 *p H= frame.size.height;2866 *px = frame.origin.x; 2867 *py = frame.origin.y; 2868 *pcx = frame.size.width; 2869 *pcy = frame.size.height; 2724 2870 2725 2871 [pPool release]; 2726 2727 DEBUG_FUNC_LEAVE(); 2728 } 2729 2730 void cocoaViewPresentComposition(NativeNSViewRef pView, const struct VBOXVR_SCR_COMPOSITOR_ENTRY *pChangedEntry) 2731 { 2732 DEBUG_FUNC_ENTER(); 2872 COCOA_LOG_FLOW(("cocoaViewGetGeometry: returns *px=%d, *py=%d, *pcx=%d, *pcy=%d\n", *px, *py, *pcx, *pcy)); 2873 } 2874 2875 void cocoaViewPresentComposition(NativeNSViewRef pView, PCVBOXVR_SCR_COMPOSITOR_ENTRY pChangedEntry) 2876 { 2877 COCOA_LOG_FLOW(("cocoaViewPresentComposition: pView=%p pChangedEntry=%p\n", (void *)pView, (void *)pChangedEntry)); 2733 2878 NSAutoreleasePool *pPool = [[NSAutoreleasePool alloc] init]; 2734 2879 NSOpenGLContext *pCtx; 2735 2880 2736 2881 /* view should not necesserily have a context set */ 2737 pCtx = [(OverlayView *)pView glCtx];2882 pCtx = [(OverlayView *)pView glCtx]; 2738 2883 if (!pCtx) 2739 2884 { 2740 ContextInfo * pCtxInfo = renderspuDefaultSharedContextAcquire(); 2885 #ifdef IN_VMSVGA3D /** @todo VMSVGA3 */ 2886 pCtx = NULL; 2887 #else 2888 ContextInfo *pCtxInfo = renderspuDefaultSharedContextAcquire(); 2741 2889 if (!pCtxInfo) 2742 2890 { … … 2749 2897 2750 2898 pCtx = pCtxInfo->context; 2899 #endif 2751 2900 2752 [(OverlayView *)pView setGLCtx:pCtx];2753 } 2754 2755 [(OverlayView *)pView presentComposition:pChangedEntry];2901 [(OverlayView *)pView setGLCtx:pCtx]; 2902 } 2903 2904 [(OverlayView *)pView presentComposition:pChangedEntry]; 2756 2905 2757 2906 [pPool release]; 2758 2759 DEBUG_FUNC_LEAVE(); 2907 COCOA_LOG_FLOW(("cocoaViewPresentComposition: returns\n")); 2760 2908 } 2761 2909 2762 2910 void cocoaViewMakeCurrentContext(NativeNSViewRef pView, NativeNSOpenGLContextRef pCtx) 2763 2911 { 2912 COCOA_LOG_FLOW(("cocoaViewMakeCurrentContext: pView=%p pCtx=%p\n", (void *)pView, (void *)pCtx)); 2913 NSAutoreleasePool *pPool = [[NSAutoreleasePool alloc] init]; 2914 2915 if (pView) 2916 { 2917 [(OverlayView *)pView setGLCtx:pCtx]; 2918 [(OverlayView *)pView makeCurrentFBO]; 2919 } 2920 else 2921 { 2922 [NSOpenGLContext clearCurrentContext]; 2923 } 2924 2925 [pPool release]; 2926 COCOA_LOG_FLOW(("cocoaViewMakeCurrentContext: returns\n")); 2927 } 2928 2929 GLboolean cocoaViewNeedsEmptyPresent(NativeNSViewRef pView) 2930 { 2931 COCOA_LOG_FLOW(("cocoaViewNeedsEmptyPresent: pView=%p\n", (void *)pView)); 2932 NSAutoreleasePool *pPool = [[NSAutoreleasePool alloc] init]; 2933 2934 GLboolean fNeedsPresent = [(OverlayView *)pView vboxNeedsEmptyPresent]; 2935 2936 [pPool release]; 2937 COCOA_LOG_FLOW(("cocoaViewNeedsEmptyPresent: returns %d\n", fNeedsPresent)); 2938 return fNeedsPresent; 2939 } 2940 2941 void cocoaViewSetVisibleRegion(NativeNSViewRef pView, GLint cRects, const GLint *paRects) 2942 { 2943 COCOA_LOG_FLOW(("cocoaViewSetVisibleRegion: pView=%p cRects=%d paRects=%p)\n", (void *)pView, cRects, (void const *)paRects)); 2944 NSAutoreleasePool *pPool = [[NSAutoreleasePool alloc] init]; 2945 2946 [(OverlayView *)pView setVisibleRegions:cRects paRects:paRects]; 2947 2948 [pPool release]; 2949 COCOA_LOG_FLOW(("cocoaViewSetVisibleRegion: returns\n")); 2950 } 2951 2952 2953 #ifdef IN_VMSVGA3D 2954 /* 2955 * VMSVGA3D interface. 2956 */ 2957 2958 VMSVGA3D_DECL(void) vmsvga3dCocoaCreateContext(NativeNSOpenGLContextRef *ppCtx, NativeNSOpenGLContextRef pSharedCtx) 2959 { 2960 cocoaGLCtxCreate(ppCtx, CR_ALPHA_BIT | CR_DEPTH_BIT | CR_DOUBLE_BIT, pSharedCtx); 2961 } 2962 2963 VMSVGA3D_DECL(void) vmsvga3dCocoaDestroyContext(NativeNSOpenGLContextRef pCtx) 2964 { 2965 cocoaGLCtxDestroy(pCtx); 2966 } 2967 2968 VMSVGA3D_DECL(void) vmsvga3dCocoaCreateView(NativeNSViewRef *ppView, NativeNSViewRef pParentView) 2969 { 2970 /** @todo share WinInfo with caller and maintain it better. */ 2971 WindowInfo *pWinInfo = (WindowInfo *)RTMemAllocZ(sizeof(WindowInfo)); 2972 AssertLogRelReturnVoid(pWinInfo); 2973 pWinInfo->cRefs = 1; 2974 RTCritSectInit(&pWinInfo->CompositorLock); 2975 2976 cocoaViewCreate(ppView, pWinInfo, pParentView, 0 /* fVisParams - ignored */); 2977 } 2978 2979 VMSVGA3D_DECL(void) vmsvga3dCocoaDestroyView(NativeNSViewRef pView) 2980 { 2981 cocoaViewDestroy(pView); 2982 } 2983 2984 VMSVGA3D_DECL(void) vmsvga3dCocoaViewSetPosition(NativeNSViewRef pView, NativeNSViewRef pParentView, int x, int y) 2985 { 2986 cocoaViewSetPosition(pView, pParentView, x, y); 2987 } 2988 2989 VMSVGA3D_DECL(void) vmsvga3dCocoaViewSetSize(NativeNSViewRef pView, int w, int h) 2990 { 2991 cocoaViewSetSize(pView, w, h); 2992 } 2993 2994 VMSVGA3D_DECL(void) vmsvga3dCocoaViewMakeCurrentContext(NativeNSViewRef pView, NativeNSOpenGLContextRef pCtx) 2995 { 2996 cocoaViewMakeCurrentContext(pView, pCtx); 2997 } 2998 2999 VMSVGA3D_DECL(void) vmsvga3dCocoaSwapBuffers(NativeNSViewRef pView, NativeNSOpenGLContextRef pCtx) 3000 { 3001 # if 1 3002 Assert([(OverlayView *)pView glCtx] == pCtx); 3003 cocoaViewDisplay(pView); 3004 # else 2764 3005 DEBUG_FUNC_ENTER(); 2765 3006 NSAutoreleasePool *pPool = [[NSAutoreleasePool alloc] init]; 2766 3007 2767 DEBUG_MSG(("cocoaViewMakeCurrentContext(%p, %p)\n", (void *)pView, (void *)pCtx)); 2768 2769 if (pView) 2770 { 2771 [(OverlayView*)pView setGLCtx:pCtx]; 2772 [(OverlayView*)pView makeCurrentFBO]; 2773 } 2774 else 2775 { 2776 [NSOpenGLContext clearCurrentContext]; 2777 } 3008 [pCtx flushBuffer]; 2778 3009 2779 3010 [pPool release]; 2780 2781 3011 DEBUG_FUNC_LEAVE(); 2782 } 2783 2784 GLboolean cocoaViewNeedsEmptyPresent(NativeNSViewRef pView) 2785 { 2786 DEBUG_FUNC_ENTER(); 2787 2788 NSAutoreleasePool *pPool = [[NSAutoreleasePool alloc] init]; 2789 2790 GLboolean fNeedsPresent = [(OverlayView*)pView vboxNeedsEmptyPresent]; 2791 2792 [pPool release]; 2793 2794 DEBUG_FUNC_LEAVE(); 2795 2796 return fNeedsPresent; 2797 } 2798 2799 void cocoaViewSetVisibleRegion(NativeNSViewRef pView, GLint cRects, const GLint* paRects) 2800 { 2801 DEBUG_FUNC_ENTER(); 2802 NSAutoreleasePool *pPool = [[NSAutoreleasePool alloc] init]; 2803 2804 [(OverlayView*)pView setVisibleRegions:cRects paRects:paRects]; 2805 2806 [pPool release]; 2807 2808 DEBUG_FUNC_LEAVE(); 2809 } 3012 # endif 3013 } 3014 3015 #endif /* IN_VMSVGA3D */
Note:
See TracChangeset
for help on using the changeset viewer.