2 * Copyright © 2006 Intel Corporation
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:
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
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.
24 * Xiang Haihao <haihao.xiang@intel.com>
28 #ifndef _I965_RENDER_H_
29 #define _I965_RENDER_H_
31 #define MAX_SAMPLERS 16
32 #define MAX_RENDER_SURFACES (MAX_SAMPLERS + 1)
34 #define NUM_RENDER_KERNEL 3
36 #include "i965_post_processing.h"
40 struct i965_render_state
43 dri_bo *vertex_buffer;
58 dri_bo *surface_state_binding_table_bo;
65 dri_bo *depth_stencil;
72 unsigned short interleaved_uv;
73 unsigned short inited;
74 struct intel_region *draw_region;
76 int pp_flag; /* 0: disable, 1: enable */
78 struct i965_kernel render_kernels[3];
81 Bool i965_render_init(VADriverContextP ctx);
82 Bool i965_render_terminate(VADriverContextP ctx);
85 intel_render_put_surface(
88 const VARectangle *src_rect,
89 const VARectangle *dst_rect,
94 intel_render_put_subpicture(
97 const VARectangle *src_rect,
98 const VARectangle *dst_rect
101 struct gen7_surface_state;
104 gen7_render_set_surface_scs(struct gen7_surface_state *ss);
106 #endif /* _I965_RENDER_H_ */