1848b8605Smrg/************************************************************************** 2848b8605Smrg * 3848b8605Smrg * Copyright 2007 VMware, Inc. 4848b8605Smrg * All Rights Reserved. 5848b8605Smrg * Copyright 2009 VMware, Inc. All Rights Reserved. 6848b8605Smrg * 7848b8605Smrg * Permission is hereby granted, free of charge, to any person obtaining a 8848b8605Smrg * copy of this software and associated documentation files (the 9848b8605Smrg * "Software"), to deal in the Software without restriction, including 10848b8605Smrg * without limitation the rights to use, copy, modify, merge, publish, 11848b8605Smrg * distribute, sub license, and/or sell copies of the Software, and to 12848b8605Smrg * permit persons to whom the Software is furnished to do so, subject to 13848b8605Smrg * the following conditions: 14848b8605Smrg * 15848b8605Smrg * The above copyright notice and this permission notice (including the 16848b8605Smrg * next paragraph) shall be included in all copies or substantial portions 17848b8605Smrg * of the Software. 18848b8605Smrg * 19848b8605Smrg * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 20848b8605Smrg * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 21848b8605Smrg * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. 22848b8605Smrg * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR 23848b8605Smrg * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 24848b8605Smrg * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 25848b8605Smrg * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 26848b8605Smrg * 27848b8605Smrg **************************************************************************/ 28848b8605Smrg 29848b8605Smrg/* Author: 30848b8605Smrg * Brian Paul 31848b8605Smrg * Michel Dänzer 32848b8605Smrg */ 33848b8605Smrg 34848b8605Smrg 35848b8605Smrg#include "pipe/p_defines.h" 36848b8605Smrg#include "lp_clear.h" 37848b8605Smrg#include "lp_context.h" 38848b8605Smrg#include "lp_setup.h" 39848b8605Smrg#include "lp_query.h" 40848b8605Smrg#include "lp_debug.h" 41848b8605Smrg 42848b8605Smrg 43848b8605Smrg/** 44848b8605Smrg * Clear the given buffers to the specified values. 45848b8605Smrg * No masking, no scissor (clear entire buffer). 46848b8605Smrg */ 47848b8605Smrgvoid 48848b8605Smrgllvmpipe_clear(struct pipe_context *pipe, 49848b8605Smrg unsigned buffers, 50848b8605Smrg const union pipe_color_union *color, 51848b8605Smrg double depth, 52848b8605Smrg unsigned stencil) 53848b8605Smrg{ 54848b8605Smrg struct llvmpipe_context *llvmpipe = llvmpipe_context(pipe); 55848b8605Smrg 56848b8605Smrg if (!llvmpipe_check_render_cond(llvmpipe)) 57848b8605Smrg return; 58848b8605Smrg 59848b8605Smrg if (LP_PERF & PERF_NO_DEPTH) 60848b8605Smrg buffers &= ~PIPE_CLEAR_DEPTHSTENCIL; 61848b8605Smrg 62848b8605Smrg lp_setup_clear( llvmpipe->setup, color, depth, stencil, buffers ); 63848b8605Smrg} 64