blob: baefcd94ec86a59d3455ca486299978b6ebb4c99 [file] [log] [blame]
Jakob Bornecrantz31926332009-11-16 19:56:18 +01001/**********************************************************
2 * Copyright 2008-2009 VMware, Inc. All rights reserved.
3 *
4 * Permission is hereby granted, free of charge, to any person
5 * obtaining a copy of this software and associated documentation
6 * files (the "Software"), to deal in the Software without
7 * restriction, including without limitation the rights to use, copy,
8 * modify, merge, publish, distribute, sublicense, and/or sell copies
9 * of the Software, and to permit persons to whom the Software is
10 * furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be
13 * included in all copies or substantial portions of the Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
19 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
20 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
21 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 *
24 **********************************************************/
25
26#ifndef SVGA_DRAW_H
27#define SVGA_DRAW_H
28
29#include "pipe/p_compiler.h"
30
31#include "svga_hw_reg.h"
32
33struct svga_hwtnl;
34struct svga_winsys_context;
35struct svga_screen;
36struct svga_context;
Keith Whitwell287c94e2010-04-10 16:05:54 +010037struct pipe_resource;
Brian Paule0542512015-08-13 11:00:58 -070038struct u_upload_mgr;
Jakob Bornecrantz31926332009-11-16 19:56:18 +010039
Brian Paule0542512015-08-13 11:00:58 -070040struct svga_hwtnl *svga_hwtnl_create(struct svga_context *svga);
Jakob Bornecrantz31926332009-11-16 19:56:18 +010041
Brian Paule0542512015-08-13 11:00:58 -070042void svga_hwtnl_destroy(struct svga_hwtnl *hwtnl);
Jakob Bornecrantz31926332009-11-16 19:56:18 +010043
Brian Paule0542512015-08-13 11:00:58 -070044void svga_hwtnl_set_flatshade(struct svga_hwtnl *hwtnl,
45 boolean flatshade, boolean flatshade_first);
Jakob Bornecrantz31926332009-11-16 19:56:18 +010046
Brian Paule0542512015-08-13 11:00:58 -070047void svga_hwtnl_set_fillmode(struct svga_hwtnl *hwtnl, unsigned mode);
Jakob Bornecrantz31926332009-11-16 19:56:18 +010048
Brian Paule0542512015-08-13 11:00:58 -070049void
50svga_hwtnl_vertex_decls(struct svga_hwtnl *hwtnl,
51 unsigned count,
52 const SVGA3dVertexDecl * decls,
53 const unsigned *buffer_indexes,
54 SVGA3dElementLayoutId layoutId);
Jakob Bornecrantz31926332009-11-16 19:56:18 +010055
Brian Paule0542512015-08-13 11:00:58 -070056void
57svga_hwtnl_vertex_buffers(struct svga_hwtnl *hwtnl,
58 unsigned count, struct pipe_vertex_buffer *buffers);
Jakob Bornecrantz31926332009-11-16 19:56:18 +010059
60enum pipe_error
Brian Paule0542512015-08-13 11:00:58 -070061svga_hwtnl_draw_arrays(struct svga_hwtnl *hwtnl,
Brian Pauld21a3092016-05-25 16:52:34 -060062 enum pipe_prim_type prim, unsigned start, unsigned count,
Brian Paule0542512015-08-13 11:00:58 -070063 unsigned start_instance, unsigned instance_count);
64
65enum pipe_error
66svga_hwtnl_draw_range_elements(struct svga_hwtnl *hwtnl,
67 struct pipe_resource *indexBuffer,
68 unsigned index_size,
69 int index_bias,
70 unsigned min_index,
71 unsigned max_index,
Brian Pauld21a3092016-05-25 16:52:34 -060072 enum pipe_prim_type prim, unsigned start, unsigned count,
Brian Paule0542512015-08-13 11:00:58 -070073 unsigned start_instance, unsigned instance_count);
Jakob Bornecrantz31926332009-11-16 19:56:18 +010074
José Fonseca1e9d8932011-10-27 19:09:25 +010075boolean
Brian Paule0542512015-08-13 11:00:58 -070076svga_hwtnl_is_buffer_referred(struct svga_hwtnl *hwtnl,
77 struct pipe_resource *buffer);
José Fonseca1e9d8932011-10-27 19:09:25 +010078
Brian Paule0542512015-08-13 11:00:58 -070079enum pipe_error svga_hwtnl_flush(struct svga_hwtnl *hwtnl);
Jakob Bornecrantz31926332009-11-16 19:56:18 +010080
Brian Paule0542512015-08-13 11:00:58 -070081void svga_hwtnl_set_index_bias(struct svga_hwtnl *hwtnl, int index_bias);
Thomas Hellstrom2b301df2011-03-17 21:09:38 +010082
Jakob Bornecrantz31926332009-11-16 19:56:18 +010083
84#endif /* SVGA_DRAW_H_ */