OSDN Git Service

r300: fix regression introduced by ca13937ef97c7779f639dcfc95b3798a11de01bd
authorMaciej Cencora <m.cencora@gmail.com>
Sat, 4 Jul 2009 09:33:47 +0000 (11:33 +0200)
committerMaciej Cencora <m.cencora@gmail.com>
Wed, 8 Jul 2009 16:42:39 +0000 (18:42 +0200)
Stride == 0 means that we value for first vertex should be copied to every other vertices (e.g. constant color).

This fixes glean/vertProg1 and sauerbraten with enabled shaders.

src/mesa/drivers/dri/r300/r300_draw.c

index fe8014b..4e8b62f 100644 (file)
@@ -234,7 +234,7 @@ static void r300TranslateAttrib(GLcontext *ctx, GLuint attr, int count, const st
                type = input->Type;
                r300_attr.free_needed = GL_FALSE;
                r300_attr.data = (GLvoid *)src_ptr;
-               r300_attr.stride = stride;
+               r300_attr.stride = input->StrideB;
                r300_attr.dwords = (getTypeSize(type) * input->Size  + 3)/ 4;
        }