VirtualBox

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

Last change on this file since 45053 was 44784, checked in by vboxsync, 12 years ago

crOpenGL/OSX: redraw impl

  • 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 44784 2013-02-21 14:56:31Z 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
26RT_C_DECLS_BEGIN
27
28struct WindowInfo;
29
30ADD_COCOA_NATIVE_REF(NSView);
31ADD_COCOA_NATIVE_REF(NSOpenGLContext);
32
33/* OpenGL context management */
34void cocoaGLCtxCreate(NativeNSOpenGLContextRef *ppCtx, GLbitfield fVisParams, NativeNSOpenGLContextRef pSharedCtx);
35void cocoaGLCtxDestroy(NativeNSOpenGLContextRef pCtx);
36
37/* View management */
38void cocoaViewCreate(NativeNSViewRef *ppView, struct WindowInfo *pWinInfo, NativeNSViewRef pParentView, GLbitfield fVisParams);
39void cocoaViewReparent(NativeNSViewRef pView, NativeNSViewRef pParentView);
40void cocoaViewDestroy(NativeNSViewRef pView);
41void cocoaViewDisplay(NativeNSViewRef pView);
42void cocoaViewShow(NativeNSViewRef pView, GLboolean fShowIt);
43void cocoaViewSetPosition(NativeNSViewRef pView, NativeNSViewRef pParentView, int x, int y);
44void cocoaViewSetSize(NativeNSViewRef pView, int w, int h);
45void cocoaViewGetGeometry(NativeNSViewRef pView, int *pX, int *pY, int *pW, int *pH);
46
47void cocoaViewMakeCurrentContext(NativeNSViewRef pView, NativeNSOpenGLContextRef pCtx);
48void cocoaViewSetVisibleRegion(NativeNSViewRef pView, GLint cRects, GLint* paRects);
49void cocoaViewPresentComposition(NativeNSViewRef pView, struct VBOXVR_SCR_COMPOSITOR * pCompositor, struct VBOXVR_SCR_COMPOSITOR_ENTRY *pChangedEntry);
50
51RT_C_DECLS_END
52
53#endif /* !___renderspu_cocoa_helper_h */
54
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