~ubuntu-branches/ubuntu/precise/mesa-lts-quantal/precise-updates

« back to all changes in this revision

Viewing changes to src/gallium/drivers/softpipe/sp_quad_fs.c

  • Committer: Package Import Robot
  • Author(s): Maarten Lankhorst
  • Date: 2013-03-21 09:25:55 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20130321092555-mupc3s4vbgvaeqem
Tags: 9.0.3-0ubuntu0.1~precise1
Copy mesa update from quantal. (LP: #1134466)

Show diffs side-by-side

added added

removed removed

Lines of Context:
148
148
static void
149
149
shade_begin(struct quad_stage *qs)
150
150
{
151
 
   struct softpipe_context *softpipe = qs->softpipe;
152
 
 
153
 
   softpipe->fs_variant->prepare( softpipe->fs_variant, 
154
 
                                  softpipe->fs_machine,
155
 
                                  (struct tgsi_sampler **)
156
 
                                  softpipe->tgsi.samplers_list[PIPE_SHADER_FRAGMENT] );
157
 
 
158
151
   qs->next->begin(qs->next);
159
152
}
160
153