1 | /* $Id: renderspu_cocoa_helper.h 50095 2014-01-17 16:34:07Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VirtualBox OpenGL Cocoa Window System Helper definition
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2009-2012 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 |
|
---|
18 | #ifndef ___renderspu_cocoa_helper_h
|
---|
19 | #define ___renderspu_cocoa_helper_h
|
---|
20 |
|
---|
21 | #include <iprt/cdefs.h>
|
---|
22 | #include <VBox/VBoxCocoa.h>
|
---|
23 | #include <OpenGL/OpenGL.h>
|
---|
24 | #include <cr_vreg.h>
|
---|
25 | #include <cr_compositor.h>
|
---|
26 |
|
---|
27 |
|
---|
28 | RT_C_DECLS_BEGIN
|
---|
29 |
|
---|
30 | struct WindowInfo;
|
---|
31 |
|
---|
32 | ADD_COCOA_NATIVE_REF(NSView);
|
---|
33 | ADD_COCOA_NATIVE_REF(NSOpenGLContext);
|
---|
34 |
|
---|
35 | /* OpenGL context management */
|
---|
36 | void cocoaGLCtxCreate(NativeNSOpenGLContextRef *ppCtx, GLbitfield fVisParams, NativeNSOpenGLContextRef pSharedCtx);
|
---|
37 | void cocoaGLCtxDestroy(NativeNSOpenGLContextRef pCtx);
|
---|
38 |
|
---|
39 | /* View management */
|
---|
40 | void cocoaViewCreate(NativeNSViewRef *ppView, struct WindowInfo *pWinInfo, NativeNSViewRef pParentView, GLbitfield fVisParams);
|
---|
41 | void cocoaViewReparent(NativeNSViewRef pView, NativeNSViewRef pParentView);
|
---|
42 | void cocoaViewDestroy(NativeNSViewRef pView);
|
---|
43 | void cocoaViewDisplay(NativeNSViewRef pView);
|
---|
44 | void cocoaViewShow(NativeNSViewRef pView, GLboolean fShowIt);
|
---|
45 | void cocoaViewSetPosition(NativeNSViewRef pView, NativeNSViewRef pParentView, int x, int y);
|
---|
46 | void cocoaViewSetSize(NativeNSViewRef pView, int w, int h);
|
---|
47 | void cocoaViewGetGeometry(NativeNSViewRef pView, int *pX, int *pY, int *pW, int *pH);
|
---|
48 |
|
---|
49 | void cocoaViewMakeCurrentContext(NativeNSViewRef pView, NativeNSOpenGLContextRef pCtx);
|
---|
50 | void cocoaViewSetVisibleRegion(NativeNSViewRef pView, GLint cRects, const GLint* paRects);
|
---|
51 | void cocoaViewPresentComposition(NativeNSViewRef pView, const struct VBOXVR_SCR_COMPOSITOR_ENTRY *pChangedEntry);
|
---|
52 |
|
---|
53 | RT_C_DECLS_END
|
---|
54 |
|
---|
55 | #endif /* !___renderspu_cocoa_helper_h */
|
---|
56 |
|
---|