diff options
author | Brian Paul <[email protected]> | 2003-03-25 02:26:28 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2003-03-25 02:26:28 +0000 |
commit | a46bd6f96a78525dc98bcb2176494e6d6dce5dce (patch) | |
tree | f5e3ca54c429badb8d93a6af3ea18b25ac49eea3 /src/mesa/main/histogram.h | |
parent | 45bc887da226403f2c41077e40ca38b6f60f1359 (diff) |
histogram code move, remove s_histogram.[ch] from Makefiles
Diffstat (limited to 'src/mesa/main/histogram.h')
-rw-r--r-- | src/mesa/main/histogram.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/mesa/main/histogram.h b/src/mesa/main/histogram.h index 3cff4d0db5e..f929b0513c2 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 |