diff options
author | Stéphane Marchesin <[email protected]> | 2011-06-24 16:18:58 -0700 |
---|---|---|
committer | Stéphane Marchesin <[email protected]> | 2011-06-24 16:30:19 -0700 |
commit | 1a69b50b3b441ce8f7a00af3a7f02c37df50f6c3 (patch) | |
tree | 95c1b1291ab9f34ff58f4a37dc65774b2455b9dc /src/gallium/drivers/i915/i915_resource.c | |
parent | 6b28b44d458177209705637f759d03a27fa100f1 (diff) |
i915g: Fix point sprites.
Diffstat (limited to 'src/gallium/drivers/i915/i915_resource.c')
-rw-r--r-- | src/gallium/drivers/i915/i915_resource.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/i915/i915_resource.c b/src/gallium/drivers/i915/i915_resource.c index 7f52ba11d61..b4719af1fb6 100644 --- a/src/gallium/drivers/i915/i915_resource.c +++ b/src/gallium/drivers/i915/i915_resource.c @@ -7,12 +7,12 @@ static struct pipe_resource * i915_resource_create(struct pipe_screen *screen, - const struct pipe_resource *template) + const struct pipe_resource *template) { if (template->target == PIPE_BUFFER) return i915_buffer_create(screen, template); else - return i915_texture_create(screen, template); + return i915_texture_create(screen, template, FALSE); } |