diff options
| author | Ben Skeggs <skeggsb@gmail.com> | 2008-04-15 13:25:28 +1000 | 
|---|---|---|
| committer | Ben Skeggs <skeggsb@gmail.com> | 2008-04-15 13:25:28 +1000 | 
| commit | 7d2085bd7d9378703bfff3d974536ff5e9fd9b30 (patch) | |
| tree | 2c6f5410eb0462b2d16466128b5c8e1124a10b45 /src | |
| parent | 276e177dfb644c60af6247598cda6c1c49dfea7b (diff) | |
nouveau: PIPE_ATTRIB_MAX -> PIPE_MAX_ATTRIBS
Diffstat (limited to 'src')
| -rw-r--r-- | src/gallium/drivers/nv10/nv10_context.h | 4 | ||||
| -rw-r--r-- | src/gallium/drivers/nv10/nv10_vbo.c | 4 | ||||
| -rw-r--r-- | src/gallium/drivers/nv30/nv30_context.h | 4 | ||||
| -rw-r--r-- | src/gallium/drivers/nv40/nv40_context.h | 4 | 
4 files changed, 8 insertions, 8 deletions
diff --git a/src/gallium/drivers/nv10/nv10_context.h b/src/gallium/drivers/nv10/nv10_context.h index 63d33ef7c9..b80f36ad34 100644 --- a/src/gallium/drivers/nv10/nv10_context.h +++ b/src/gallium/drivers/nv10/nv10_context.h @@ -96,8 +96,8 @@ struct nv10_context {  		struct pipe_buffer *constant_buf;  	} fragprog; -	struct pipe_vertex_buffer  vtxbuf[PIPE_ATTRIB_MAX]; -	struct pipe_vertex_element vtxelt[PIPE_ATTRIB_MAX]; +	struct pipe_vertex_buffer  vtxbuf[PIPE_MAX_ATTRIBS]; +	struct pipe_vertex_element vtxelt[PIPE_MAX_ATTRIBS];  };  static INLINE struct nv10_context * diff --git a/src/gallium/drivers/nv10/nv10_vbo.c b/src/gallium/drivers/nv10/nv10_vbo.c index 3a4f49e156..2a334e137d 100644 --- a/src/gallium/drivers/nv10/nv10_vbo.c +++ b/src/gallium/drivers/nv10/nv10_vbo.c @@ -23,7 +23,7 @@ boolean nv10_draw_elements( struct pipe_context *pipe,  	/*  	 * Map vertex buffers  	 */ -	for (i = 0; i < PIPE_ATTRIB_MAX; i++) { +	for (i = 0; i < PIPE_MAX_ATTRIBS; i++) {  		if (nv10->vtxbuf[i].buffer) {  			void *buf  				= pipe->winsys->buffer_map(pipe->winsys, @@ -52,7 +52,7 @@ boolean nv10_draw_elements( struct pipe_context *pipe,  	/*  	 * unmap vertex/index buffers  	 */ -	for (i = 0; i < PIPE_ATTRIB_MAX; i++) { +	for (i = 0; i < PIPE_MAX_ATTRIBS; i++) {  		if (nv10->vtxbuf[i].buffer) {  			pipe->winsys->buffer_unmap(pipe->winsys, nv10->vtxbuf[i].buffer);  			draw_set_mapped_vertex_buffer(draw, i, NULL); diff --git a/src/gallium/drivers/nv30/nv30_context.h b/src/gallium/drivers/nv30/nv30_context.h index 180969731b..1a016405e6 100644 --- a/src/gallium/drivers/nv30/nv30_context.h +++ b/src/gallium/drivers/nv30/nv30_context.h @@ -124,8 +124,8 @@ struct nv30_context {  		struct pipe_buffer *constant_buf;  	} fragprog; -	struct pipe_vertex_buffer  vtxbuf[PIPE_ATTRIB_MAX]; -	struct pipe_vertex_element vtxelt[PIPE_ATTRIB_MAX]; +	struct pipe_vertex_buffer  vtxbuf[PIPE_MAX_ATTRIBS]; +	struct pipe_vertex_element vtxelt[PIPE_MAX_ATTRIBS];  };  static INLINE struct nv30_context * diff --git a/src/gallium/drivers/nv40/nv40_context.h b/src/gallium/drivers/nv40/nv40_context.h index 436351b6bc..2f10540ff0 100644 --- a/src/gallium/drivers/nv40/nv40_context.h +++ b/src/gallium/drivers/nv40/nv40_context.h @@ -151,9 +151,9 @@ struct nv40_context {  	unsigned nr_samplers;  	unsigned nr_textures;  	unsigned dirty_samplers; -	struct pipe_vertex_buffer vtxbuf[PIPE_ATTRIB_MAX]; +	struct pipe_vertex_buffer vtxbuf[PIPE_MAX_ATTRIBS];  	unsigned vtxbuf_nr; -	struct pipe_vertex_element vtxelt[PIPE_ATTRIB_MAX]; +	struct pipe_vertex_element vtxelt[PIPE_MAX_ATTRIBS];  	unsigned vtxelt_nr;  };  | 
