histogram.h revision 4a49301e
17117f1b4Smrg/** 27117f1b4Smrg * \file histogram.h 37117f1b4Smrg * Histogram. 47117f1b4Smrg * 57117f1b4Smrg * \if subset 67117f1b4Smrg * (No-op) 77117f1b4Smrg * 87117f1b4Smrg * \endif 97117f1b4Smrg */ 107117f1b4Smrg 117117f1b4Smrg/* 127117f1b4Smrg * Mesa 3-D graphics library 137117f1b4Smrg * Version: 5.1 147117f1b4Smrg * 157117f1b4Smrg * Copyright (C) 1999-2003 Brian Paul All Rights Reserved. 167117f1b4Smrg * 177117f1b4Smrg * Permission is hereby granted, free of charge, to any person obtaining a 187117f1b4Smrg * copy of this software and associated documentation files (the "Software"), 197117f1b4Smrg * to deal in the Software without restriction, including without limitation 207117f1b4Smrg * the rights to use, copy, modify, merge, publish, distribute, sublicense, 217117f1b4Smrg * and/or sell copies of the Software, and to permit persons to whom the 227117f1b4Smrg * Software is furnished to do so, subject to the following conditions: 237117f1b4Smrg * 247117f1b4Smrg * The above copyright notice and this permission notice shall be included 257117f1b4Smrg * in all copies or substantial portions of the Software. 267117f1b4Smrg * 277117f1b4Smrg * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 287117f1b4Smrg * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 297117f1b4Smrg * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 307117f1b4Smrg * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN 317117f1b4Smrg * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 327117f1b4Smrg * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 337117f1b4Smrg */ 347117f1b4Smrg 357117f1b4Smrg 367117f1b4Smrg#ifndef HISTOGRAM_H 377117f1b4Smrg#define HISTOGRAM_H 387117f1b4Smrg 394a49301eSmrg#include "main/mtypes.h" 407117f1b4Smrg 414a49301eSmrg#if FEATURE_histogram 427117f1b4Smrg 434a49301eSmrgextern void 444a49301eSmrg_mesa_init_histogram_dispatch(struct _glapi_table *disp); 457117f1b4Smrg 464a49301eSmrg#else /* FEATURE_histogram */ 477117f1b4Smrg 484a49301eSmrgstatic INLINE void 494a49301eSmrg_mesa_init_histogram_dispatch(struct _glapi_table *disp) 504a49301eSmrg{ 514a49301eSmrg} 527117f1b4Smrg 534a49301eSmrg#endif /* FEATURE_histogram */ 547117f1b4Smrg 557117f1b4Smrgextern void _mesa_init_histogram( GLcontext * ctx ); 567117f1b4Smrg 574a49301eSmrg#endif /* HISTOGRAM_H */ 58