OSDN Git Service

jpeg/dec: gen8+ set correct fourcc for monochrome decode
[android-x86/hardware-intel-common-vaapi.git] / src / i965_render.h
1 /*
2  * Copyright © 2006 Intel Corporation
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the "Software"),
6  * to deal in the Software without restriction, including without limitation
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8  * and/or sell copies of the Software, and to permit persons to whom the
9  * Software is furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice (including the next
12  * paragraph) shall be included in all copies or substantial portions of the
13  * Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
18  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21  * DEALINGS IN THE SOFTWARE.
22  *
23  * Authors:
24  *    Xiang Haihao <haihao.xiang@intel.com>
25  *
26  */
27
28 #ifndef _I965_RENDER_H_
29 #define _I965_RENDER_H_
30
31 #define MAX_SAMPLERS            16
32 #define MAX_RENDER_SURFACES     (MAX_SAMPLERS + 1)
33
34 #define NUM_RENDER_KERNEL       3
35
36 #define VA_SRC_COLOR_MASK       0x000000f0
37
38 #include "i965_post_processing.h"
39
40 struct i965_kernel;
41
42 struct i965_render_state
43 {
44     struct {
45         dri_bo *vertex_buffer;
46     } vb;
47
48     struct {
49         dri_bo *state;
50     } vs;
51     
52     struct {
53         dri_bo *state;
54     } sf;
55
56     struct {
57         int sampler_count;
58         dri_bo *sampler;
59         dri_bo *state;
60         dri_bo *surface_state_binding_table_bo;
61     } wm;
62
63     struct {
64         dri_bo *state;
65         dri_bo *viewport;
66         dri_bo *blend;
67         dri_bo *depth_stencil;
68     } cc;
69
70     struct {
71         dri_bo *bo;
72     } curbe;
73
74     struct intel_region *draw_region;
75
76     int pp_flag; /* 0: disable, 1: enable */
77
78     struct i965_kernel render_kernels[3];
79     
80     struct {
81         dri_bo *bo;
82         int bo_size;
83         unsigned int end_offset;
84     } instruction_state;
85
86     struct {
87         dri_bo *bo;
88     } indirect_state;
89
90     struct {
91         dri_bo *bo;
92         int bo_size;
93         unsigned int end_offset;
94     } dynamic_state;
95
96     unsigned int curbe_offset;
97     int curbe_size;
98
99     unsigned int sampler_offset;
100     int sampler_size;
101
102     unsigned int cc_viewport_offset;
103     int cc_viewport_size;
104
105     unsigned int cc_state_offset;
106     int cc_state_size;
107
108     unsigned int blend_state_offset;
109     int blend_state_size;
110   
111     unsigned int sf_clip_offset;
112     int sf_clip_size;
113
114     unsigned int scissor_offset;
115     int scissor_size;
116
117     void (*render_put_surface)(VADriverContextP ctx, struct object_surface *,
118                                const VARectangle *src_rec,
119                                const VARectangle *dst_rect,
120                                unsigned int flags);
121     void (*render_put_subpicture)(VADriverContextP ctx, struct object_surface *,
122                                const VARectangle *src_rec,
123                                const VARectangle *dst_rect);
124     void (*render_terminate)(VADriverContextP ctx);
125 };
126
127 bool i965_render_init(VADriverContextP ctx);
128 void i965_render_terminate(VADriverContextP ctx);
129
130 void
131 intel_render_put_surface(
132     VADriverContextP   ctx,
133     struct object_surface *obj_surface,
134     const VARectangle *src_rect,
135     const VARectangle *dst_rect,
136     unsigned int       flags
137 );
138
139 void
140 intel_render_put_subpicture(
141     VADriverContextP   ctx,
142     struct object_surface *obj_surface,
143     const VARectangle *src_rect,
144     const VARectangle *dst_rect
145 );
146
147 struct gen7_surface_state;
148
149 void
150 gen7_render_set_surface_scs(struct gen7_surface_state *ss);
151
152 struct gen8_surface_state;
153 void
154 gen8_render_set_surface_scs(struct gen8_surface_state *ss);
155
156 extern bool gen8_render_init(VADriverContextP ctx);
157
158 extern bool gen9_render_init(VADriverContextP ctx);
159
160 #endif /* _I965_RENDER_H_ */