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

« back to all changes in this revision

Viewing changes to src/gallium/drivers/identity/id_context.c

  • Committer: Package Import Robot
  • Author(s): Robert Hooker
  • Date: 2012-02-02 12:05:48 UTC
  • mfrom: (1.7.1) (3.3.27 sid)
  • Revision ID: package-import@ubuntu.com-20120202120548-nvkma85jq0h4coix
Tags: 8.0~rc2-0ubuntu4
Drop drisearchdir handling, it is no longer needed with multiarch
and dri-alternates being removed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
606
606
static void
607
607
identity_clear(struct pipe_context *_pipe,
608
608
               unsigned buffers,
609
 
               const float *rgba,
 
609
               const union pipe_color_union *color,
610
610
               double depth,
611
611
               unsigned stencil)
612
612
{
615
615
 
616
616
   pipe->clear(pipe,
617
617
               buffers,
618
 
               rgba,
 
618
               color,
619
619
               depth,
620
620
               stencil);
621
621
}
623
623
static void
624
624
identity_clear_render_target(struct pipe_context *_pipe,
625
625
                             struct pipe_surface *_dst,
626
 
                             const float *rgba,
 
626
                             const union pipe_color_union *color,
627
627
                             unsigned dstx, unsigned dsty,
628
628
                             unsigned width, unsigned height)
629
629
{
634
634
 
635
635
   pipe->clear_render_target(pipe,
636
636
                             dst,
637
 
                             rgba,
 
637
                             color,
638
638
                             dstx,
639
639
                             dsty,
640
640
                             width,