Module: Mesa Branch: master Commit: 666fdc01c4a00eef0e114001441441fb7caeee15 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=666fdc01c4a00eef0e114001441441fb7caeee15
Author: Corbin Simpson <[email protected]> Date: Wed Jun 23 11:25:52 2010 -0700 id, glhd: Unbreak texturing. Argfl. --- src/gallium/drivers/galahad/glhd_objects.c | 1 + src/gallium/drivers/identity/id_objects.c | 1 + 2 files changed, 2 insertions(+), 0 deletions(-) diff --git a/src/gallium/drivers/galahad/glhd_objects.c b/src/gallium/drivers/galahad/glhd_objects.c index c9680d1..6c5a21a 100644 --- a/src/gallium/drivers/galahad/glhd_objects.c +++ b/src/gallium/drivers/galahad/glhd_objects.c @@ -127,6 +127,7 @@ galahad_sampler_view_create(struct galahad_context *glhd_context, glhd_view->base.texture = NULL; pipe_resource_reference(&glhd_view->base.texture, glhd_resource->resource); glhd_view->base.context = glhd_context->pipe; + glhd_view->sampler_view = view; return &glhd_view->base; error: diff --git a/src/gallium/drivers/identity/id_objects.c b/src/gallium/drivers/identity/id_objects.c index cd364a2..593928f 100644 --- a/src/gallium/drivers/identity/id_objects.c +++ b/src/gallium/drivers/identity/id_objects.c @@ -127,6 +127,7 @@ identity_sampler_view_create(struct identity_context *id_context, id_view->base.texture = NULL; pipe_resource_reference(&id_view->base.texture, id_resource->resource); id_view->base.context = id_context->pipe; + id_view->sampler_view = view; return &id_view->base; error: _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
