14#ifndef CSCI441_FRAMEBUFFER_UTILS_HPP
15#define CSCI441_FRAMEBUFFER_UTILS_HPP
17#ifdef CSCI441_USE_GLEW
66 if(glIsFramebuffer(fbo)) {
67 glBindFramebuffer( target, fbo );
70 glGetIntegerv( GL_DRAW_BUFFER0 + i, &buffer );
71 if( buffer != GL_NONE ) {
72 printf(
"[FBO]: Shader Output Location %d -> color attachment %d\n", i, buffer - GL_COLOR_ATTACHMENT0 );
73 glGetFramebufferAttachmentParameteriv( target, buffer, GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE, &res );
74 printf(
"[FBO]: \tAttachment Type: %s\n", res == GL_TEXTURE ?
"Texture" :
"Render Buffer" );
75 glGetFramebufferAttachmentParameteriv( target, buffer, GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME, &res );
76 printf(
"[FBO]: \tAttachment object name: %d\n", res );
79 }
while( buffer != GL_NONE );
81 fprintf(stderr,
"[FBO]: Error: %d is not a framebuffer\n", fbo);
87 if(glIsFramebuffer(fbo)) {
88 glBindFramebuffer( target, fbo );
91 fprintf(stderr,
"[FBO]: Error: %d is not a framebuffer\n", fbo);
96 GLenum status = glCheckFramebufferStatus( target );
97 if( status == GL_FRAMEBUFFER_COMPLETE )
98 printf(
"[FBO]: Framebuffer initialized completely!\n" );
100 fprintf( stderr,
"[FBO]: Framebuffer failed to initialize completely 0x%x.\n", status );
103 case GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT:
104 fprintf(stderr,
"[FBO]: An attachment could not be bound to framebuffer object!\n");
107 case GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT:
108 fprintf(stderr,
"[FBO]: Attachments are missing! At least one image (texture) must be bound to the framebuffer object!\n");
111 case GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS_EXT:
112 fprintf(stderr,
"[FBO]: The dimensions of the buffers attached to the currently used framebuffer object do not match!\n");
115 case GL_FRAMEBUFFER_INCOMPLETE_FORMATS_EXT:
116 fprintf(stderr,
"[FBO]: The formats of the currently used framebuffer object are not supported or do not fit together!\n");
119 case GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER:
120 fprintf(stderr,
"[FBO]: A Draw buffer is incomplete or undefined. All draw buffers must specify attachment points that have images attached.\n");
123 case GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER:
124 fprintf(stderr,
"[FBO]: A Read buffer is incomplete or undefined. All read buffers must specify attachment points that have images attached.\n");
127 case GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE:
128 fprintf(stderr,
"[FBO]: All images must have the same number of multisample samples.\n");
131 case GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS :
132 fprintf(stderr,
"[FBO]: If a layered image is attached to one attachment, then all attachments must be layered attachments. The attached layers do not have to have the same number of layers, nor do the layers have to come from the same kind of texture.\n");
135 case GL_FRAMEBUFFER_UNSUPPORTED:
136 fprintf(stderr,
"[FBO]: Attempt to use an unsupported format combination!\n");
140 fprintf(stderr,
"[FBO]: Unknown error while attempting to create framebuffer object!\n");
void printFramebufferInfo(GLenum target, GLuint fbo)
Prints the framebuffer information for the FBO attached to the corresponding target.
Definition: FramebufferUtils.hpp:62
void printFramebufferStatusMessage(GLenum target, GLuint fbo)
Prints the framebuffer status for the FBO attached to the corresponding target.
Definition: FramebufferUtils.hpp:86
CSCI441 Helper Functions for OpenGL.
Definition: ArcballCam.hpp:17
OpenGL Framebuffer Utility functions.