xorg: fix compilation

This commit is contained in:
Zack Rusin 2009-08-24 18:42:16 -04:00
parent 17076d700c
commit ffe8cc6cef
1 changed files with 2 additions and 1 deletions

View File

@ -113,7 +113,7 @@ struct xorg_shader xorg_shader_construct(struct exa_context *exa,
dst_picture);
struct xorg_shader shader = {0};
ureg = ureg_create(exa->ctx, TGSI_PROCESSOR_FRAGMENT);
ureg = ureg_create(TGSI_PROCESSOR_FRAGMENT);
if (ureg == NULL)
return shader;
@ -154,4 +154,5 @@ struct xorg_shader xorg_shader_construct(struct exa_context *exa,
ureg_END(ureg);
return shader;
}