summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/histogram.h
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2003-03-25 02:26:28 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2003-03-25 02:26:28 +0000
commita46bd6f96a78525dc98bcb2176494e6d6dce5dce (patch)
treef5e3ca54c429badb8d93a6af3ea18b25ac49eea3 /src/mesa/main/histogram.h
parent45bc887da226403f2c41077e40ca38b6f60f1359 (diff)
downloadexternal_mesa3d-a46bd6f96a78525dc98bcb2176494e6d6dce5dce.zip
external_mesa3d-a46bd6f96a78525dc98bcb2176494e6d6dce5dce.tar.gz
external_mesa3d-a46bd6f96a78525dc98bcb2176494e6d6dce5dce.tar.bz2
histogram code move, remove s_histogram.[ch] from Makefiles
Diffstat (limited to 'src/mesa/main/histogram.h')
-rw-r--r--src/mesa/main/histogram.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/mesa/main/histogram.h b/src/mesa/main/histogram.h
index 3cff4d0..f929b05 100644
--- a/src/mesa/main/histogram.h
+++ b/src/mesa/main/histogram.h
@@ -1,10 +1,10 @@
-/* $Id: histogram.h,v 1.4 2002/10/24 23:57:21 brianp Exp $ */
+/* $Id: histogram.h,v 1.5 2003/03/25 02:26:29 brianp Exp $ */
/*
* Mesa 3-D graphics library
- * Version: 4.1
+ * Version: 5.1
*
- * Copyright (C) 1999-2002 Brian Paul All Rights Reserved.
+ * Copyright (C) 1999-2003 Brian Paul All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
@@ -32,6 +32,13 @@
#include "mtypes.h"
+extern void
+_mesa_update_minmax(GLcontext *ctx, GLuint n, const GLfloat rgba[][4]);
+
+extern void
+_mesa_update_histogram(GLcontext *ctx, GLuint n, const GLfloat rgba[][4]);
+
+
extern void _mesa_GetMinmax(GLenum target, GLboolean reset, GLenum format, GLenum types, GLvoid *values);
extern void _mesa_GetHistogram(GLenum target, GLboolean reset, GLenum format, GLenum type, GLvoid *values);
@@ -52,11 +59,4 @@ extern void _mesa_ResetHistogram(GLenum target);
extern void _mesa_ResetMinmax(GLenum target);
-extern void
-_mesa_update_minmax(GLcontext *ctx, GLuint n, const GLfloat rgba[][4]);
-
-extern void
-_mesa_update_histogram(GLcontext *ctx, GLuint n, const GLfloat rgba[][4]);
-
-
#endif