1 /**************************************************************************
3 * Copyright 2008 Tungsten Graphics, Inc., Cedar Park, Texas.
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26 **************************************************************************/
29 #include "pipe/p_context.h"
30 #include "pipe/p_defines.h"
31 #include "util/u_inlines.h"
32 #include "util/u_draw_quad.h"
33 #include "util/u_memory.h"
34 #include "cso_cache/cso_context.h"
38 * Draw a simple vertex buffer / primitive.
39 * Limited to float[4] vertex attribs, tightly packed.
42 util_draw_vertex_buffer(struct pipe_context
*pipe
,
43 struct cso_context
*cso
,
44 struct pipe_resource
*vbuf
,
50 struct pipe_vertex_buffer vbuffer
;
52 assert(num_attribs
<= PIPE_MAX_ATTRIBS
);
54 /* tell pipe about the vertex buffer */
55 memset(&vbuffer
, 0, sizeof(vbuffer
));
56 vbuffer
.buffer
= vbuf
;
57 vbuffer
.stride
= num_attribs
* 4 * sizeof(float); /* vertex size */
58 vbuffer
.buffer_offset
= offset
;
61 cso_set_vertex_buffers(cso
, 1, &vbuffer
);
63 pipe
->set_vertex_buffers(pipe
, 1, &vbuffer
);
66 /* note: vertex elements already set by caller */
69 util_draw_arrays(pipe
, prim_type
, 0, num_verts
);
75 * Draw screen-aligned textured quad.
76 * Note: this isn't especially efficient.
79 util_draw_texquad(struct pipe_context
*pipe
, struct cso_context
*cso
,
80 float x0
, float y0
, float x1
, float y1
, float z
)
82 uint numAttribs
= 2, i
, j
;
83 uint vertexBytes
= 4 * (4 * numAttribs
* sizeof(float));
84 struct pipe_resource
*vbuf
= NULL
;
87 v
= MALLOC(vertexBytes
);
94 for (i
= j
= 0; i
< 4; i
++) {
96 v
[j
+ 3] = 1.0; /* w */
97 v
[j
+ 6] = 0.0; /* r */
98 v
[j
+ 7] = 1.0; /* q */
122 vbuf
= pipe_user_buffer_create(pipe
->screen
, v
, vertexBytes
,
123 PIPE_BIND_VERTEX_BUFFER
);
127 util_draw_vertex_buffer(pipe
, cso
, vbuf
, 0, PIPE_PRIM_TRIANGLE_FAN
, 4, 2);
131 pipe_resource_reference(&vbuf
, NULL
);