VirtualBox

source: vbox/trunk/src/VBox/GuestHost/OpenGL/include/state/cr_framebuffer.h@ 44125

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

crOpenGL: fix guest state bits

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.7 KB
Line 
1/* $Id: cr_framebuffer.h 44125 2012-12-13 18:02:35Z vboxsync $ */
2
3/** @file
4 * VBox crOpenGL: FBO related state info
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
20#ifndef CR_STATE_FRAMEBUFFEROBJECT_H
21#define CR_STATE_FRAMEBUFFEROBJECT_H
22
23#include "cr_hash.h"
24#include "state/cr_statetypes.h"
25#include "state/cr_statefuncs.h"
26
27#ifdef __cplusplus
28extern "C" {
29#endif
30
31#define CR_MAX_COLOR_ATTACHMENTS 16
32
33typedef struct {
34 GLenum type; /*one of GL_NONE GL_TEXTURE GL_RENDERBUFFER_EXT*/
35 GLuint name;
36 GLint level;
37 GLint face;
38 GLint zoffset;
39} CRFBOAttachmentPoint;
40
41typedef struct {
42 GLuint id, hwid;
43 CRFBOAttachmentPoint color[CR_MAX_COLOR_ATTACHMENTS];
44 CRFBOAttachmentPoint depth;
45 CRFBOAttachmentPoint stencil;
46 GLenum readbuffer;
47 /*@todo: we don't support drawbufferS yet, so it's a stub*/
48 GLenum drawbuffer[1];
49#ifdef IN_GUEST
50 GLenum status;
51#else
52 /* bitfield representing the object usage. 1 means the object is used by the context with the given bitid */
53 CRbitvalue ctxUsage[CR_MAX_BITARRAY];
54#endif
55} CRFramebufferObject;
56
57typedef struct {
58 GLuint id, hwid;
59 GLsizei width, height;
60 GLenum internalformat;
61 GLuint redBits, greenBits, blueBits, alphaBits, depthBits, stencilBits;
62#ifndef IN_GUEST
63 /* bitfield representing the object usage. 1 means the object is used by the context with the given bitid */
64 CRbitvalue ctxUsage[CR_MAX_BITARRAY];
65#endif
66} CRRenderbufferObject;
67
68typedef struct {
69 CRFramebufferObject *readFB, *drawFB;
70 CRRenderbufferObject *renderbuffer;
71} CRFramebufferObjectState;
72
73DECLEXPORT(void) STATE_APIENTRY crStateFramebufferObjectInit(CRContext *ctx);
74DECLEXPORT(void) STATE_APIENTRY crStateFramebufferObjectDestroy(CRContext *ctx);
75DECLEXPORT(void) STATE_APIENTRY crStateFramebufferObjectSwitch(CRContext *from, CRContext *to);
76
77DECLEXPORT(void) STATE_APIENTRY crStateFramebufferObjectDisableHW(CRContext *ctx, GLuint idDrawFBO, GLuint idReadFBO);
78DECLEXPORT(void) STATE_APIENTRY crStateFramebufferObjectReenableHW(CRContext *fromCtx, CRContext *toCtx, GLuint idDrawFBO, GLuint idReadFBO);
79
80DECLEXPORT(GLuint) STATE_APIENTRY crStateGetFramebufferHWID(GLuint id);
81DECLEXPORT(GLuint) STATE_APIENTRY crStateGetRenderbufferHWID(GLuint id);
82
83DECLEXPORT(void) STATE_APIENTRY crStateBindRenderbufferEXT(GLenum target, GLuint renderbuffer);
84DECLEXPORT(void) STATE_APIENTRY crStateDeleteRenderbuffersEXT(GLsizei n, const GLuint *renderbuffers);
85DECLEXPORT(void) STATE_APIENTRY crStateRenderbufferStorageEXT(GLenum target, GLenum internalformat, GLsizei width, GLsizei height);
86DECLEXPORT(void) STATE_APIENTRY crStateGetRenderbufferParameterivEXT(GLenum target, GLenum pname, GLint *params);
87DECLEXPORT(void) STATE_APIENTRY crStateBindFramebufferEXT(GLenum target, GLuint framebuffer);
88DECLEXPORT(void) STATE_APIENTRY crStateDeleteFramebuffersEXT(GLsizei n, const GLuint *framebuffers);
89DECLEXPORT(void) STATE_APIENTRY crStateFramebufferTexture1DEXT(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level);
90DECLEXPORT(void) STATE_APIENTRY crStateFramebufferTexture2DEXT(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level);
91DECLEXPORT(void) STATE_APIENTRY crStateFramebufferTexture3DEXT(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset);
92DECLEXPORT(void) STATE_APIENTRY crStateFramebufferRenderbufferEXT(GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer);
93DECLEXPORT(void) STATE_APIENTRY crStateGetFramebufferAttachmentParameterivEXT(GLenum target, GLenum attachment, GLenum pname, GLint *params);
94DECLEXPORT(void) STATE_APIENTRY crStateGenerateMipmapEXT(GLenum target);
95
96DECLEXPORT(GLuint) STATE_APIENTRY crStateFBOHWIDtoID(GLuint hwid);
97DECLEXPORT(GLuint) STATE_APIENTRY crStateRBOHWIDtoID(GLuint hwid);
98
99DECLEXPORT(void) crStateRegFramebuffers(GLsizei n, GLuint *buffers);
100DECLEXPORT(void) crStateRegRenderbuffers(GLsizei n, GLuint *buffers);
101
102#ifdef IN_GUEST
103DECLEXPORT(GLenum) STATE_APIENTRY crStateCheckFramebufferStatusEXT(GLenum target);
104DECLEXPORT(GLenum) STATE_APIENTRY crStateSetFramebufferStatus(GLenum target, GLenum status);
105#endif
106
107#ifdef __cplusplus
108}
109#endif
110
111#endif /* CR_STATE_FRAMEBUFFEROBJECT_H */
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