pixel.h revision 4a49301e
17117f1b4Smrg/* 27117f1b4Smrg * Mesa 3-D graphics library 3c1f859d4Smrg * Version: 7.1 47117f1b4Smrg * 5c1f859d4Smrg * Copyright (C) 1999-2008 Brian Paul All Rights Reserved. 67117f1b4Smrg * 77117f1b4Smrg * Permission is hereby granted, free of charge, to any person obtaining a 87117f1b4Smrg * copy of this software and associated documentation files (the "Software"), 97117f1b4Smrg * to deal in the Software without restriction, including without limitation 107117f1b4Smrg * the rights to use, copy, modify, merge, publish, distribute, sublicense, 117117f1b4Smrg * and/or sell copies of the Software, and to permit persons to whom the 127117f1b4Smrg * Software is furnished to do so, subject to the following conditions: 137117f1b4Smrg * 147117f1b4Smrg * The above copyright notice and this permission notice shall be included 157117f1b4Smrg * in all copies or substantial portions of the Software. 167117f1b4Smrg * 177117f1b4Smrg * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 187117f1b4Smrg * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 197117f1b4Smrg * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 207117f1b4Smrg * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN 217117f1b4Smrg * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 227117f1b4Smrg * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 237117f1b4Smrg */ 247117f1b4Smrg 257117f1b4Smrg 26c1f859d4Smrg/** 27c1f859d4Smrg * \file pixel.h 28c1f859d4Smrg * Pixel operations. 29c1f859d4Smrg */ 30c1f859d4Smrg 31c1f859d4Smrg 327117f1b4Smrg#ifndef PIXEL_H 337117f1b4Smrg#define PIXEL_H 347117f1b4Smrg 357117f1b4Smrg 364a49301eSmrg#include "main/mtypes.h" 377117f1b4Smrg 387117f1b4Smrg 394a49301eSmrg#if FEATURE_pixel_transfer 407117f1b4Smrg 414a49301eSmrgextern void 424a49301eSmrg_mesa_update_pixel( GLcontext *ctx, GLuint newstate ); 437117f1b4Smrg 444a49301eSmrgextern void 454a49301eSmrg_mesa_init_pixel_dispatch( struct _glapi_table * disp ); 467117f1b4Smrg 474a49301eSmrg#else /* FEATURE_pixel_transfer */ 487117f1b4Smrg 494a49301eSmrgstatic INLINE void 504a49301eSmrg_mesa_update_pixel(GLcontext *ctx, GLuint newstate) 514a49301eSmrg{ 524a49301eSmrg} 537117f1b4Smrg 544a49301eSmrgstatic INLINE void 554a49301eSmrg_mesa_init_pixel_dispatch(struct _glapi_table *disp) 564a49301eSmrg{ 574a49301eSmrg} 587117f1b4Smrg 594a49301eSmrg#endif /* FEATURE_pixel_transfer */ 607117f1b4Smrg 617117f1b4Smrg 627117f1b4Smrgextern void 637117f1b4Smrg_mesa_init_pixel( GLcontext * ctx ); 647117f1b4Smrg 657117f1b4Smrg/*@}*/ 667117f1b4Smrg 674a49301eSmrg#endif /* PIXEL_H */ 68