diff options
author | Alex Deucher <alexdeucher@gmail.com> | 2010-08-24 18:01:05 -0400 |
---|---|---|
committer | Alex Deucher <alexdeucher@gmail.com> | 2010-08-24 18:01:05 -0400 |
commit | 141cbc283fddeb67c2a6c47a0f0f5c2aa2bfb430 (patch) | |
tree | d105e2358cab548afd91bccb67ae4c9adda8b6a9 | |
parent | f170dddd3538a587f2363ef5fa10a4b484e762da (diff) |
evergreen Xv: remove stray line that caused a segfault
fixes:
https://bugs.freedesktop.org/show_bug.cgi?id=29788
-rw-r--r-- | src/evergreen_textured_videofuncs.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/evergreen_textured_videofuncs.c b/src/evergreen_textured_videofuncs.c index 3ff4d61d..7cf72793 100644 --- a/src/evergreen_textured_videofuncs.c +++ b/src/evergreen_textured_videofuncs.c @@ -478,7 +478,6 @@ EVERGREENDisplayTexturedVideo(ScrnInfoPtr pScrn, RADEONPortPrivPtr pPriv) vs_const_conf.type = SHADER_TYPE_VS; vs_alu_consts = radeon_vbo_space(pScrn, &accel_state->cbuf, 256); - vs_alu_consts = (float *)vs_const_conf.bo->ptr; vs_alu_consts[0] = 1.0 / pPriv->w; vs_alu_consts[1] = 1.0 / pPriv->h; vs_alu_consts[2] = 0.0; |