diff options
Diffstat (limited to 'src/gallium/drivers')
| -rw-r--r-- | src/gallium/drivers/r300/r300_context.c | 1 | ||||
| -rw-r--r-- | src/gallium/drivers/r600/r600_pipe.c | 1 | 
2 files changed, 2 insertions, 0 deletions
| diff --git a/src/gallium/drivers/r300/r300_context.c b/src/gallium/drivers/r300/r300_context.c index b8b7afa9c2..7e0c068ff3 100644 --- a/src/gallium/drivers/r300/r300_context.c +++ b/src/gallium/drivers/r300/r300_context.c @@ -434,6 +434,7 @@ struct pipe_context* r300_create_context(struct pipe_screen* screen,      r300_init_resource_functions(r300);      r300->vbuf_mgr = u_vbuf_mgr_create(&r300->context, 1024 * 1024, 16, +				       PIPE_BIND_VERTEX_BUFFER,  				       U_VERTEX_FETCH_DWORD_ALIGNED);      if (!r300->vbuf_mgr)          goto fail; diff --git a/src/gallium/drivers/r600/r600_pipe.c b/src/gallium/drivers/r600/r600_pipe.c index ad609fbdfa..9826bf42ac 100644 --- a/src/gallium/drivers/r600/r600_pipe.c +++ b/src/gallium/drivers/r600/r600_pipe.c @@ -166,6 +166,7 @@ static struct pipe_context *r600_create_context(struct pipe_screen *screen, void  	}  	rctx->vbuf_mgr = u_vbuf_mgr_create(&rctx->context, 1024 * 1024, 16, +					   PIPE_BIND_VERTEX_BUFFER,  					   U_VERTEX_FETCH_BYTE_ALIGNED);  	if (!rctx->vbuf_mgr) {  		r600_destroy_context(&rctx->context); | 
