1af69d88dSmrg/************************************************************************** 2af69d88dSmrg * 3af69d88dSmrg * Copyright 2011 Lauri Kasanen 4af69d88dSmrg * All Rights Reserved. 5af69d88dSmrg * 6af69d88dSmrg * Permission is hereby granted, free of charge, to any person obtaining a 7af69d88dSmrg * copy of this software and associated documentation files (the 8af69d88dSmrg * "Software"), to deal in the Software without restriction, including 9af69d88dSmrg * without limitation the rights to use, copy, modify, merge, publish, 10af69d88dSmrg * distribute, sub license, and/or sell copies of the Software, and to 11af69d88dSmrg * permit persons to whom the Software is furnished to do so, subject to 12af69d88dSmrg * the following conditions: 13af69d88dSmrg * 14af69d88dSmrg * The above copyright notice and this permission notice (including the 15af69d88dSmrg * next paragraph) shall be included in all copies or substantial portions 16af69d88dSmrg * of the Software. 17af69d88dSmrg * 18af69d88dSmrg * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 19af69d88dSmrg * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 20af69d88dSmrg * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. 21af69d88dSmrg * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR 22af69d88dSmrg * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 23af69d88dSmrg * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 24af69d88dSmrg * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 25af69d88dSmrg * 26af69d88dSmrg **************************************************************************/ 27af69d88dSmrg 28af69d88dSmrg#ifndef POSTPROCESS_H 29af69d88dSmrg#define POSTPROCESS_H 30af69d88dSmrg 31af69d88dSmrg#include "pipe/p_state.h" 32af69d88dSmrg 3301e04c3fSmrg#ifdef __cplusplus 3401e04c3fSmrgextern "C" { 3501e04c3fSmrg#endif 3601e04c3fSmrg 37af69d88dSmrgstruct cso_context; 387ec681f3Smrgstruct st_context_iface; 39af69d88dSmrg 40af69d88dSmrgstruct pp_queue_t; /* Forward definition */ 41af69d88dSmrgstruct pp_program; 42af69d88dSmrg 43af69d88dSmrg/* Less typing later on */ 44af69d88dSmrgtypedef void (*pp_func) (struct pp_queue_t *, struct pipe_resource *, 45af69d88dSmrg struct pipe_resource *, unsigned int); 46af69d88dSmrg 47af69d88dSmrg/* Main functions */ 48af69d88dSmrg 49af69d88dSmrg/** 50af69d88dSmrg * Note enabled is an array of values, one per filter stage. 51af69d88dSmrg * Zero indicates the stage is disabled. Non-zero indicates the 52af69d88dSmrg * stage is enabled. For some stages, the value controls quality. 53af69d88dSmrg */ 54af69d88dSmrgstruct pp_queue_t *pp_init(struct pipe_context *pipe, 55af69d88dSmrg const unsigned int *enabled, 567ec681f3Smrg struct cso_context *, 577ec681f3Smrg struct st_context_iface *st); 58af69d88dSmrg 59af69d88dSmrgvoid pp_run(struct pp_queue_t *, struct pipe_resource *, 60af69d88dSmrg struct pipe_resource *, struct pipe_resource *); 61af69d88dSmrgvoid pp_free(struct pp_queue_t *); 62af69d88dSmrg 63af69d88dSmrgvoid pp_init_fbos(struct pp_queue_t *, unsigned int, unsigned int); 64af69d88dSmrg 65af69d88dSmrg 66af69d88dSmrg/* The filters */ 67af69d88dSmrg 68af69d88dSmrgvoid pp_nocolor(struct pp_queue_t *, struct pipe_resource *, 69af69d88dSmrg struct pipe_resource *, unsigned int); 70af69d88dSmrg 71af69d88dSmrgvoid pp_jimenezmlaa(struct pp_queue_t *, struct pipe_resource *, 72af69d88dSmrg struct pipe_resource *, unsigned int); 73af69d88dSmrgvoid pp_jimenezmlaa_color(struct pp_queue_t *, struct pipe_resource *, 74af69d88dSmrg struct pipe_resource *, unsigned int); 75af69d88dSmrg 76af69d88dSmrg/* The filter init functions */ 77af69d88dSmrg 78af69d88dSmrgbool pp_celshade_init(struct pp_queue_t *, unsigned int, unsigned int); 79af69d88dSmrg 80af69d88dSmrgbool pp_nored_init(struct pp_queue_t *, unsigned int, unsigned int); 81af69d88dSmrgbool pp_nogreen_init(struct pp_queue_t *, unsigned int, unsigned int); 82af69d88dSmrgbool pp_noblue_init(struct pp_queue_t *, unsigned int, unsigned int); 83af69d88dSmrg 84af69d88dSmrgbool pp_jimenezmlaa_init(struct pp_queue_t *, unsigned int, unsigned int); 85af69d88dSmrgbool pp_jimenezmlaa_init_color(struct pp_queue_t *, unsigned int, 86af69d88dSmrg unsigned int); 87af69d88dSmrg 88af69d88dSmrg/* The filter free functions */ 89af69d88dSmrg 90af69d88dSmrgvoid pp_celshade_free(struct pp_queue_t *, unsigned int); 91af69d88dSmrgvoid pp_nocolor_free(struct pp_queue_t *, unsigned int); 92af69d88dSmrgvoid pp_jimenezmlaa_free(struct pp_queue_t *, unsigned int); 93af69d88dSmrg 9401e04c3fSmrg 9501e04c3fSmrg#ifdef __cplusplus 9601e04c3fSmrg} 9701e04c3fSmrg#endif 9801e04c3fSmrg 99af69d88dSmrg#endif 100