]> git.mxchange.org Git - simgear.git/blobdiff - simgear/screen/screen-dump.hxx
make headers include headers they depend on, don't rely on the c(xx)
[simgear.git] / simgear / screen / screen-dump.hxx
index 41da1b05f963a21401923f28495cc83094fcba75..379802b1aad2d3b509bbada39bd7a3689d9d2abc 100644 (file)
 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 // Library General Public License for more details.
 //
-// You should have received a copy of the GNU Library General Public
-// License along with this library; if not, write to the
-// Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-// Boston, MA  02111-1307, USA.
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 //
 // $Id$
 
+#include <simgear/compiler.h>
+
+#include SG_GL_H
 
 /**
  * Dump the screen buffer to a ppm file.
@@ -29,7 +31,7 @@
  * @param win_width width of our opengl window
  * @param win_height height of our opengl window
  */
-void my_glDumpWindow( const char *filename, int win_width, int win_height );
+bool sg_glDumpWindow( const char *filename, int win_width, int win_height );
 
 
 /**
@@ -40,5 +42,5 @@ void my_glDumpWindow( const char *filename, int win_width, int win_height );
  * @param win_height height of buffer
  * @param mode one of GL_RGBA, GL_RGB, etc.
  */
-void my_glWritePPMFile( const char *filename, GLubyte *buffer, int win_width, 
+bool sg_glWritePPMFile( const char *filename, GLubyte *buffer, int win_width, 
                        int win_height, int mode);