gallium: remove unnecessary assignment
[mesa.git] / src / gallium / drivers / softpipe / sp_tex_sample.h
1 #ifndef SP_TEX_SAMPLE_H
2 #define SP_TEX_SAMPLE_H
3
4
5 struct tgsi_sampler;
6
7
8 extern void
9 sp_get_samples(struct tgsi_sampler *sampler,
10 const float s[QUAD_SIZE],
11 const float t[QUAD_SIZE],
12 const float p[QUAD_SIZE],
13 float lodbias,
14 float rgba[NUM_CHANNELS][QUAD_SIZE]);
15
16
17 #endif /* SP_TEX_SAMPLE_H */