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

« back to all changes in this revision

Viewing changes to src/gallium/auxiliary/util/u_tile.h

  • 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:
118
118
                      uint w, uint h,
119
119
                      float *dst, unsigned dst_stride);
120
120
 
 
121
void
 
122
pipe_tile_raw_to_unsigned(enum pipe_format format,
 
123
                          void *src,
 
124
                          uint w, uint h,
 
125
                          unsigned *dst, unsigned dst_stride);
 
126
 
 
127
void
 
128
pipe_tile_raw_to_signed(enum pipe_format format,
 
129
                        void *src,
 
130
                        uint w, uint h,
 
131
                        int *dst, unsigned dst_stride);
 
132
 
 
133
void
 
134
pipe_get_tile_ui_format(struct pipe_context *pipe,
 
135
                        struct pipe_transfer *pt,
 
136
                        uint x, uint y, uint w, uint h,
 
137
                        enum pipe_format format,
 
138
                        unsigned int *p);
 
139
 
 
140
void
 
141
pipe_get_tile_i_format(struct pipe_context *pipe,
 
142
                       struct pipe_transfer *pt,
 
143
                       uint x, uint y, uint w, uint h,
 
144
                       enum pipe_format format,
 
145
                       int *p);
 
146
 
 
147
void
 
148
pipe_put_tile_ui_format(struct pipe_context *pipe,
 
149
                        struct pipe_transfer *pt,
 
150
                        uint x, uint y, uint w, uint h,
 
151
                        enum pipe_format format,
 
152
                        const unsigned *p);
 
153
 
 
154
void
 
155
pipe_put_tile_i_format(struct pipe_context *pipe,
 
156
                       struct pipe_transfer *pt,
 
157
                       uint x, uint y, uint w, uint h,
 
158
                       enum pipe_format format,
 
159
                       const int *p);
121
160
 
122
161
#ifdef __cplusplus
123
162
}