0eb729a5b69b10dc460c03ad15931d78a4599998
[mesa.git] / src / gallium / drivers / panfrost / pan_job.h
1 /*
2 * Copyright (C) 2019 Alyssa Rosenzweig
3 * Copyright (C) 2014-2017 Broadcom
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
14 * Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 *
24 */
25
26 #ifndef __PAN_JOB_H__
27 #define __PAN_JOB_H__
28
29 /* Used as a hash table key */
30
31 struct panfrost_job_key {
32 struct pipe_surface *cbufs[4];
33 struct pipe_surface *zsbuf;
34 };
35
36 /* A panfrost_job corresponds to a bound FBO we're rendering to,
37 * collecting over multiple draws. */
38
39 struct panfrost_job {
40 struct panfrost_context *ctx;
41 struct panfrost_job_key key;
42
43 /* Buffers cleared (PIPE_CLEAR_* bitmask) */
44 unsigned clear;
45
46 /* Packed clear values */
47 uint32_t clear_color;
48 float clear_depth;
49 unsigned clear_stencil;
50 };
51
52 /* Functions for managing the above */
53
54 struct panfrost_job *
55 panfrost_create_job(struct panfrost_context *ctx);
56
57 struct panfrost_job *
58 panfrost_get_job(struct panfrost_context *ctx,
59 struct pipe_surface **cbufs, struct pipe_surface *zsbuf);
60
61 struct panfrost_job *
62 panfrost_get_job_for_fbo(struct panfrost_context *ctx);
63
64 void
65 panfrost_job_init(struct panfrost_context *ctx);
66
67 #endif