]> git.mxchange.org Git - simgear.git/blob - simgear/screen/screen-dump.hxx
- remove the SG_GLxxxx_H #defines, since OSG provides its own versions
[simgear.git] / simgear / screen / screen-dump.hxx
1 /**
2  * \file screen-dump.hxx
3  * Dump a copy of the opengl screen buffer to a file.
4  */
5
6 // Contributed by Richard Kaszeta <bofh@me.umn.edu>, started October 1999.
7 //
8 // This library is free software; you can redistribute it and/or
9 // modify it under the terms of the GNU Library General Public
10 // License as published by the Free Software Foundation; either
11 // version 2 of the License, or (at your option) any later version.
12 //
13 // This library is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 // Library General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the Free Software
20 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
21 //
22 // $Id$
23
24 #include <simgear/compiler.h>
25
26 #include <osg/GL>
27
28 /**
29  * Dump the screen buffer to a ppm file.
30  * @param filename name of file
31  * @param win_width width of our opengl window
32  * @param win_height height of our opengl window
33  */
34 bool sg_glDumpWindow( const char *filename, int win_width, int win_height );
35
36
37 /**
38  * Given a GLubyte *buffer, write it out to a ppm file.
39  * @param filename name of file
40  * @param buffer pointer to opengl buffer
41  * @param win_width width of buffer
42  * @param win_height height of buffer
43  * @param mode one of GL_RGBA, GL_RGB, etc.
44  */
45 bool sg_glWritePPMFile( const char *filename, GLubyte *buffer, int win_width, 
46                         int win_height, int mode);