VirtualBox

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

Last change on this file since 35346 was 34107, checked in by vboxsync, 14 years ago

crOpenGL/wddm: resync shared data only once

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.0 KB
Line 
1/* $Id: cr_framebuffer.h 34107 2010-11-16 11:37:51Z 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#endif
52} CRFramebufferObject;
53
54typedef struct {
55 GLuint id, hwid;
56 GLsizei width, height;
57 GLenum internalformat;
58 GLuint redBits, greenBits, blueBits, alphaBits, depthBits, stencilBits;
59} CRRenderbufferObject;
60
61typedef struct {
62 CRFramebufferObject *readFB, *drawFB;
63 CRRenderbufferObject *renderbuffer;
64} CRFramebufferObjectState;
65
66DECLEXPORT(void) STATE_APIENTRY crStateFramebufferObjectInit(CRContext *ctx);
67DECLEXPORT(void) STATE_APIENTRY crStateFramebufferObjectDestroy(CRContext *ctx);
68DECLEXPORT(void) STATE_APIENTRY crStateFramebufferObjectSwitch(CRContext *from, CRContext *to);
69DECLEXPORT(GLuint) STATE_APIENTRY crStateGetFramebufferHWID(GLuint id);
70DECLEXPORT(GLuint) STATE_APIENTRY crStateGetRenderbufferHWID(GLuint id);
71
72DECLEXPORT(void) STATE_APIENTRY crStateBindRenderbufferEXT(GLenum target, GLuint renderbuffer);
73DECLEXPORT(void) STATE_APIENTRY crStateDeleteRenderbuffersEXT(GLsizei n, const GLuint *renderbuffers);
74DECLEXPORT(void) STATE_APIENTRY crStateRenderbufferStorageEXT(GLenum target, GLenum internalformat, GLsizei width, GLsizei height);
75DECLEXPORT(void) STATE_APIENTRY crStateGetRenderbufferParameterivEXT(GLenum target, GLenum pname, GLint *params);
76DECLEXPORT(void) STATE_APIENTRY crStateBindFramebufferEXT(GLenum target, GLuint framebuffer);
77DECLEXPORT(void) STATE_APIENTRY crStateDeleteFramebuffersEXT(GLsizei n, const GLuint *framebuffers);
78DECLEXPORT(void) STATE_APIENTRY crStateFramebufferTexture1DEXT(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level);
79DECLEXPORT(void) STATE_APIENTRY crStateFramebufferTexture2DEXT(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level);
80DECLEXPORT(void) STATE_APIENTRY crStateFramebufferTexture3DEXT(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset);
81DECLEXPORT(void) STATE_APIENTRY crStateFramebufferRenderbufferEXT(GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer);
82DECLEXPORT(void) STATE_APIENTRY crStateGetFramebufferAttachmentParameterivEXT(GLenum target, GLenum attachment, GLenum pname, GLint *params);
83DECLEXPORT(void) STATE_APIENTRY crStateGenerateMipmapEXT(GLenum target);
84
85DECLEXPORT(GLuint) STATE_APIENTRY crStateFBOHWIDtoID(GLuint hwid);
86DECLEXPORT(GLuint) STATE_APIENTRY crStateRBOHWIDtoID(GLuint hwid);
87
88#ifdef IN_GUEST
89DECLEXPORT(GLenum) STATE_APIENTRY crStateCheckFramebufferStatusEXT(GLenum target);
90DECLEXPORT(GLenum) STATE_APIENTRY crStateSetFramebufferStatus(GLenum target, GLenum status);
91#endif
92
93#ifdef __cplusplus
94}
95#endif
96
97#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