CSCI441 OpenGL Library 5.9.0
CS@Mines CSCI441 Computer Graphics Course Library
Loading...
Searching...
No Matches
FramebufferUtils.hpp
Go to the documentation of this file.
1
14#ifndef CSCI441_FRAMEBUFFER_UTILS_HPP
15#define CSCI441_FRAMEBUFFER_UTILS_HPP
16
17#ifdef CSCI441_USE_GLEW
18 #include <GL/glew.h>
19#else
20 #include <glad/gl.h>
21#endif
22
23#include <cstdio>
24
25//**********************************************************************************
26
27namespace CSCI441 {
28
33 namespace FramebufferUtils {
34
40 [[maybe_unused]] void printFramebufferInfo( GLenum target, GLuint fbo );
41
47 [[maybe_unused]] void printFramebufferStatusMessage( GLenum target, GLuint fbo );
48
53 void printFramebufferStatusMessage( GLenum target );
54 }
55}
56
57//**********************************************************************************
58//**********************************************************************************
59// Outward facing function implementations
60
61[[maybe_unused]]
62inline void CSCI441::FramebufferUtils::printFramebufferInfo( const GLenum target, const GLuint fbo ) {
63 int res, i = 0;
64 GLint buffer;
65
66 if(glIsFramebuffer(fbo)) {
67 glBindFramebuffer( target, fbo );
68
69 do {
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 );
77 }
78 ++i;
79 } while( buffer != GL_NONE );
80 } else {
81 fprintf(stderr, "[FBO]: Error: %d is not a framebuffer\n", fbo);
82 }
83}
84
85[[maybe_unused]]
86inline void CSCI441::FramebufferUtils::printFramebufferStatusMessage( const GLenum target, const GLuint fbo ) {
87 if(glIsFramebuffer(fbo)) {
88 glBindFramebuffer( target, fbo );
90 } else {
91 fprintf(stderr, "[FBO]: Error: %d is not a framebuffer\n", fbo);
92 }
93}
94
96 GLenum status = glCheckFramebufferStatus( target );
97 if( status == GL_FRAMEBUFFER_COMPLETE )
98 printf( "[FBO]: Framebuffer initialized completely!\n" );
99 else {
100 fprintf( stderr, "[FBO]: Framebuffer failed to initialize completely 0x%x.\n", status );
101
102 switch(status) {
103 case GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT:
104 fprintf(stderr, "[FBO]: An attachment could not be bound to framebuffer object!\n");
105 break;
106
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");
109 break;
110
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");
113 break;
114
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");
117 break;
118
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");
121 break;
122
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");
125 break;
126
127 case GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE:
128 fprintf(stderr, "[FBO]: All images must have the same number of multisample samples.\n");
129 break;
130
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");
133 break;
134
135 case GL_FRAMEBUFFER_UNSUPPORTED:
136 fprintf(stderr, "[FBO]: Attempt to use an unsupported format combination!\n");
137 break;
138
139 default:
140 fprintf(stderr, "[FBO]: Unknown error while attempting to create framebuffer object!\n");
141 break;
142 }
143 }
144}
145
146#endif // CSCI441_FRAMEBUFFER_UTILS_HPP
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.