1f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org/**************************************************************************
2f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org *
3f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * Copyright 2009 VMware, Inc.  All Rights Reserved.
4f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org *
5f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * Permission is hereby granted, free of charge, to any person obtaining a
6f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * copy of this software and associated documentation files (the
7f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * "Software"), to deal in the Software without restriction, including
8f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * without limitation the rights to use, copy, modify, merge, publish,
9f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * distribute, sub license, and/or sell copies of the Software, and to
10f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * permit persons to whom the Software is furnished to do so, subject to
11f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * the following conditions:
12f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org *
13f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * The above copyright notice and this permission notice (including the
14f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * next paragraph) shall be included in all copies or substantial portions
15f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * of the Software.
16f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org *
17f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
20f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
21f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
22f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
23f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org *
25f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org **************************************************************************/
26f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
27f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org/* Authors:
28f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org *    Michel Dänzer
29f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org */
30f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
31f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
32f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org#include "pipe/p_context.h"
33f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org#include "pipe/p_state.h"
34f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
35f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
36f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org/**
37f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * Clear the given buffers to the specified values.
38f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * No masking, no scissor (clear entire buffer).
39f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org */
40f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.orgstatic INLINE void
41f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.orgutil_clear(struct pipe_context *pipe,
42f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org           struct pipe_framebuffer_state *framebuffer, unsigned buffers,
43f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org           const union pipe_color_union *color, double depth, unsigned stencil)
44f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org{
45f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org   if (buffers & PIPE_CLEAR_COLOR) {
46f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org      unsigned i;
47f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org      for (i = 0; i < framebuffer->nr_cbufs; i++) {
48f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org         struct pipe_surface *ps = framebuffer->cbufs[i];
49f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org         pipe->clear_render_target(pipe, ps, color, 0, 0, ps->width, ps->height);
50f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org      }
51f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org   }
52f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
53f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org   if (buffers & PIPE_CLEAR_DEPTHSTENCIL) {
54f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org      struct pipe_surface *ps = framebuffer->zsbuf;
55f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org      pipe->clear_depth_stencil(pipe, ps, buffers & PIPE_CLEAR_DEPTHSTENCIL,
56f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org                                depth, stencil,
57f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org                                0, 0, ps->width, ps->height);
58f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org   }
59f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org}
60