swr/rast: make simd16 logicops avx512f safe
[mesa.git] / src / gallium / drivers / swr / swr_context.h
1 /****************************************************************************
2 * Copyright (C) 2015 Intel Corporation. All Rights Reserved.
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 DEALINGS
21 * IN THE SOFTWARE.
22 ***************************************************************************/
23
24 #ifndef SWR_CONTEXT_H
25 #define SWR_CONTEXT_H
26
27 #include "common/os.h"
28
29 #include "pipe/p_context.h"
30 #include "pipe/p_state.h"
31 #include "util/u_blitter.h"
32 #include "jit_api.h"
33 #include "swr_state.h"
34 #include <unordered_map>
35
36 #define SWR_NEW_BLEND (1 << 0)
37 #define SWR_NEW_RASTERIZER (1 << 1)
38 #define SWR_NEW_DEPTH_STENCIL_ALPHA (1 << 2)
39 #define SWR_NEW_SAMPLER (1 << 3)
40 #define SWR_NEW_SAMPLER_VIEW (1 << 4)
41 #define SWR_NEW_VS (1 << 5)
42 #define SWR_NEW_FS (1 << 6)
43 #define SWR_NEW_GS (1 << 7)
44 #define SWR_NEW_VSCONSTANTS (1 << 8)
45 #define SWR_NEW_FSCONSTANTS (1 << 9)
46 #define SWR_NEW_GSCONSTANTS (1 << 10)
47 #define SWR_NEW_VERTEX (1 << 11)
48 #define SWR_NEW_STIPPLE (1 << 12)
49 #define SWR_NEW_SCISSOR (1 << 13)
50 #define SWR_NEW_VIEWPORT (1 << 14)
51 #define SWR_NEW_FRAMEBUFFER (1 << 15)
52 #define SWR_NEW_CLIP (1 << 16)
53 #define SWR_NEW_SO (1 << 17)
54
55 namespace std
56 {
57 template <> struct hash<BLEND_COMPILE_STATE> {
58 std::size_t operator()(const BLEND_COMPILE_STATE &k) const
59 {
60 return util_hash_crc32(&k, sizeof(k));
61 }
62 };
63 };
64
65 struct swr_jit_texture {
66 uint32_t width; // same as number of elements
67 uint32_t height;
68 uint32_t depth; // doubles as array size
69 uint32_t first_level;
70 uint32_t last_level;
71 const uint8_t *base_ptr;
72 uint32_t row_stride[PIPE_MAX_TEXTURE_LEVELS];
73 uint32_t img_stride[PIPE_MAX_TEXTURE_LEVELS];
74 uint32_t mip_offsets[PIPE_MAX_TEXTURE_LEVELS];
75 };
76
77 struct swr_jit_sampler {
78 float min_lod;
79 float max_lod;
80 float lod_bias;
81 float border_color[4];
82 };
83
84 struct swr_draw_context {
85 const float *constantVS[PIPE_MAX_CONSTANT_BUFFERS];
86 uint32_t num_constantsVS[PIPE_MAX_CONSTANT_BUFFERS];
87 const float *constantFS[PIPE_MAX_CONSTANT_BUFFERS];
88 uint32_t num_constantsFS[PIPE_MAX_CONSTANT_BUFFERS];
89 const float *constantGS[PIPE_MAX_CONSTANT_BUFFERS];
90 uint32_t num_constantsGS[PIPE_MAX_CONSTANT_BUFFERS];
91
92 swr_jit_texture texturesVS[PIPE_MAX_SHADER_SAMPLER_VIEWS];
93 swr_jit_sampler samplersVS[PIPE_MAX_SAMPLERS];
94 swr_jit_texture texturesFS[PIPE_MAX_SHADER_SAMPLER_VIEWS];
95 swr_jit_sampler samplersFS[PIPE_MAX_SAMPLERS];
96 swr_jit_texture texturesGS[PIPE_MAX_SHADER_SAMPLER_VIEWS];
97 swr_jit_sampler samplersGS[PIPE_MAX_SAMPLERS];
98
99 float userClipPlanes[PIPE_MAX_CLIP_PLANES][4];
100
101 uint32_t polyStipple[32];
102
103 SWR_SURFACE_STATE renderTargets[SWR_NUM_ATTACHMENTS];
104 void *pStats;
105 };
106
107 /* gen_llvm_types FINI */
108
109 struct swr_context {
110 struct pipe_context pipe; /**< base class */
111
112 HANDLE swrContext;
113
114 /** Constant state objects */
115 struct swr_blend_state *blend;
116 struct pipe_sampler_state *samplers[PIPE_SHADER_TYPES][PIPE_MAX_SAMPLERS];
117 struct pipe_depth_stencil_alpha_state *depth_stencil;
118 struct pipe_rasterizer_state *rasterizer;
119
120 struct swr_vertex_shader *vs;
121 struct swr_fragment_shader *fs;
122 struct swr_geometry_shader *gs;
123 struct swr_vertex_element_state *velems;
124
125 /** Other rendering state */
126 struct pipe_blend_color blend_color;
127 struct pipe_stencil_ref stencil_ref;
128 struct pipe_clip_state clip;
129 struct pipe_constant_buffer
130 constants[PIPE_SHADER_TYPES][PIPE_MAX_CONSTANT_BUFFERS];
131 struct pipe_framebuffer_state framebuffer;
132 struct swr_poly_stipple poly_stipple;
133 struct pipe_scissor_state scissor;
134 SWR_RECT swr_scissor;
135 struct pipe_sampler_view *
136 sampler_views[PIPE_SHADER_TYPES][PIPE_MAX_SHADER_SAMPLER_VIEWS];
137
138 struct pipe_viewport_state viewport;
139 struct pipe_vertex_buffer vertex_buffer[PIPE_MAX_ATTRIBS];
140
141 struct blitter_context *blitter;
142
143 /** Conditional query object and mode */
144 struct pipe_query *render_cond_query;
145 enum pipe_render_cond_flag render_cond_mode;
146 boolean render_cond_cond;
147 unsigned active_queries;
148
149 unsigned num_vertex_buffers;
150 unsigned num_samplers[PIPE_SHADER_TYPES];
151 unsigned num_sampler_views[PIPE_SHADER_TYPES];
152
153 unsigned sample_mask;
154
155 // streamout
156 pipe_stream_output_target *so_targets[MAX_SO_STREAMS];
157 uint32_t num_so_targets;
158
159 /* Temp storage for user_buffer constants */
160 struct swr_scratch_buffers *scratch;
161
162 // blend jit functions
163 std::unordered_map<BLEND_COMPILE_STATE, PFN_BLEND_JIT_FUNC> *blendJIT;
164
165 /* Derived SWR API DrawState */
166 struct swr_derived_state derived;
167
168 /* SWR private state - draw context */
169 struct swr_draw_context swrDC;
170
171 unsigned dirty; /**< Mask of SWR_NEW_x flags */
172 };
173
174 static INLINE struct swr_context *
175 swr_context(struct pipe_context *pipe)
176 {
177 return (struct swr_context *)pipe;
178 }
179
180 static INLINE void
181 swr_update_draw_context(struct swr_context *ctx,
182 struct swr_query_result *pqr = nullptr)
183 {
184 swr_draw_context *pDC =
185 (swr_draw_context *)SwrGetPrivateContextState(ctx->swrContext);
186 if (pqr)
187 ctx->swrDC.pStats = pqr;
188 memcpy(pDC, &ctx->swrDC, sizeof(swr_draw_context));
189 }
190
191 struct pipe_context *swr_create_context(struct pipe_screen *, void *priv, unsigned flags);
192
193 void swr_state_init(struct pipe_context *pipe);
194
195 void swr_clear_init(struct pipe_context *pipe);
196
197 void swr_draw_init(struct pipe_context *pipe);
198
199 void swr_finish(struct pipe_context *pipe);
200
201 void swr_do_msaa_resolve(struct pipe_resource *src_resource,
202 struct pipe_resource *dst_resource);
203 #endif