diff options
author | Jakob Bornecrantz <jakob@vmware.com> | 2010-12-15 12:17:26 +0100 |
---|---|---|
committer | Jakob Bornecrantz <jakob@vmware.com> | 2010-12-16 09:44:02 +0100 |
commit | 23aa3c552cc54a3242142b82916090f8b7b32e44 (patch) | |
tree | 24f476f2b3a4254d06de905b9dcdd4e93ac02c66 /src/gallium/drivers/galahad | |
parent | 1138775d79dfe9043cf9e6c77a9077b0acc0a239 (diff) |
svga, glhd: Remove incorrect assert and add note
Stride can be lower then the size of the attribute.
But should probably be aligned to component size atleast for floats.
Diffstat (limited to 'src/gallium/drivers/galahad')
-rw-r--r-- | src/gallium/drivers/galahad/glhd_context.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/galahad/glhd_context.c b/src/gallium/drivers/galahad/glhd_context.c index a572ad22bd..8cbf0b1de4 100644 --- a/src/gallium/drivers/galahad/glhd_context.c +++ b/src/gallium/drivers/galahad/glhd_context.c @@ -381,6 +381,8 @@ galahad_create_vertex_elements_state(struct pipe_context *_pipe, struct galahad_context *glhd_pipe = galahad_context(_pipe); struct pipe_context *pipe = glhd_pipe->pipe; + /* XXX check if stride lines up with element size, at least for floats */ + return pipe->create_vertex_elements_state(pipe, num_elements, vertex_elements); |