VirtualBox

source: vbox/trunk/src/VBox/HostServices/SharedOpenGL/render/renderspu_cocoa_helper.h@ 51423

Last change on this file since 51423 was 50095, checked in by vboxsync, 11 years ago

crOpenGL: presentation infrastructure rework (still work in progress)

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.1 KB
Line 
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
28RT_C_DECLS_BEGIN
29
30struct WindowInfo;
31
32ADD_COCOA_NATIVE_REF(NSView);
33ADD_COCOA_NATIVE_REF(NSOpenGLContext);
34
35/* OpenGL context management */
36void cocoaGLCtxCreate(NativeNSOpenGLContextRef *ppCtx, GLbitfield fVisParams, NativeNSOpenGLContextRef pSharedCtx);
37void cocoaGLCtxDestroy(NativeNSOpenGLContextRef pCtx);
38
39/* View management */
40void cocoaViewCreate(NativeNSViewRef *ppView, struct WindowInfo *pWinInfo, NativeNSViewRef pParentView, GLbitfield fVisParams);
41void cocoaViewReparent(NativeNSViewRef pView, NativeNSViewRef pParentView);
42void cocoaViewDestroy(NativeNSViewRef pView);
43void cocoaViewDisplay(NativeNSViewRef pView);
44void cocoaViewShow(NativeNSViewRef pView, GLboolean fShowIt);
45void cocoaViewSetPosition(NativeNSViewRef pView, NativeNSViewRef pParentView, int x, int y);
46void cocoaViewSetSize(NativeNSViewRef pView, int w, int h);
47void cocoaViewGetGeometry(NativeNSViewRef pView, int *pX, int *pY, int *pW, int *pH);
48
49void cocoaViewMakeCurrentContext(NativeNSViewRef pView, NativeNSOpenGLContextRef pCtx);
50void cocoaViewSetVisibleRegion(NativeNSViewRef pView, GLint cRects, const GLint* paRects);
51void cocoaViewPresentComposition(NativeNSViewRef pView, const struct VBOXVR_SCR_COMPOSITOR_ENTRY *pChangedEntry);
52
53RT_C_DECLS_END
54
55#endif /* !___renderspu_cocoa_helper_h */
56
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