Searched refs:swImg (Results 1 - 10 of 10) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/mesa/swrast/
H A Ds_texture.c90 struct swrast_texture_image *swImg = swrast_texture_image(texImage); local in function:_swrast_alloc_texture_image_buffer
101 assert(!swImg->Buffer);
102 swImg->Buffer = _mesa_align_malloc(bytesPerSlice * slices, 512);
103 if (!swImg->Buffer)
107 swImg->RowStride = _mesa_format_row_stride(texImage->TexFormat,
111 swImg->ImageSlices[i] = swImg->Buffer + bytesPerSlice * i;
128 struct swrast_texture_image *swImg = swrast_texture_image(texImage); local in function:_swrast_init_texture_image
133 swImg->_IsPowerOfTwo = GL_TRUE;
135 swImg
[all...]
H A Ds_texfilter.c166 const struct swrast_texture_image *swImg = swrast_texture_image_const(img); local in function:linear_texel_locations
171 if (swImg->_IsPowerOfTwo) {
295 const struct swrast_texture_image *swImg = swrast_texture_image_const(img); local in function:nearest_texel_location
303 if (swImg->_IsPowerOfTwo)
855 const struct swrast_texture_image *swImg = swrast_texture_image_const(img); local in function:sample_1d_nearest
866 swImg->FetchTexel(swImg, i, 0, 0, rgba);
880 const struct swrast_texture_image *swImg = swrast_texture_image_const(img); local in function:sample_1d_linear
903 swImg->FetchTexel(swImg, i
1122 const struct swrast_texture_image *swImg = swrast_texture_image_const(img); local in function:sample_2d_nearest
1156 const struct swrast_texture_image *swImg = swrast_texture_image_const(img); local in function:sample_2d_linear
1221 const struct swrast_texture_image *swImg = swrast_texture_image_const(img); local in function:sample_2d_linear_repeat
1387 const struct swrast_texture_image *swImg = swrast_texture_image_const(image); local in function:sample_linear_2d
1421 const struct swrast_texture_image *swImg = swrast_texture_image_const(img); local in function:opt_sample_rgb_2d
1466 const struct swrast_texture_image *swImg = swrast_texture_image_const(img); local in function:opt_sample_rgba_2d
1504 const struct swrast_texture_image *swImg = swrast_texture_image_const(tImg); local in function:sample_lambda_2d
1659 const struct swrast_texture_image *swImg = local in function:sample_2d_ewa
1871 const struct swrast_texture_image *swImg = swrast_texture_image_const(tImg); local in function:sample_lambda_2d_aniso
2024 const struct swrast_texture_image *swImg = swrast_texture_image_const(img); local in function:sample_3d_nearest
2057 const struct swrast_texture_image *swImg = swrast_texture_image_const(img); local in function:sample_3d_linear
2683 const struct swrast_texture_image *swImg = swrast_texture_image_const(img); local in function:sample_nearest_rect
2718 const struct swrast_texture_image *swImg = swrast_texture_image_const(img); local in function:sample_linear_rect
2829 const struct swrast_texture_image *swImg = swrast_texture_image_const(img); local in function:sample_2d_array_nearest
2863 const struct swrast_texture_image *swImg = swrast_texture_image_const(img); local in function:sample_2d_array_linear
3148 const struct swrast_texture_image *swImg = swrast_texture_image_const(img); local in function:sample_1d_array_nearest
3179 const struct swrast_texture_image *swImg = swrast_texture_image_const(img); local in function:sample_1d_array_linear
3550 const struct swrast_texture_image *swImg = swrast_texture_image_const(img); local in function:sample_depth_texture
3755 const struct swrast_texture_image *swImg = local in function:_swrast_choose_texture_sample_func
[all...]
H A Ds_fragprog.c121 const struct swrast_texture_image *swImg = local in function:fetch_texel_deriv
124 const GLfloat texW = (GLfloat) swImg->WidthScale;
125 const GLfloat texH = (GLfloat) swImg->HeightScale;
H A Ds_triangle.c132 const struct swrast_texture_image *swImg = \
137 const GLubyte *texture = (const GLubyte *) swImg->ImageSlices[0]; \
190 const struct swrast_texture_image *swImg = \
195 const GLubyte *texture = (const GLubyte *) swImg->ImageSlices[0]; \
547 const struct swrast_texture_image *swImg = \
551 info.texture = (const GLchan *) swImg->ImageSlices[0]; \
816 const struct swrast_texture_image *swImg = \
818 info.texture = (const GLchan *) swImg->ImageSlices[0]; \
1052 const struct swrast_texture_image *swImg; local in function:_swrast_choose_triangle
1064 swImg
[all...]
H A Ds_span.c503 const struct swrast_texture_image *swImg = local in function:interpolate_texcoords
516 texW = swImg->WidthScale;
517 texH = swImg->HeightScale;
/xsrc/external/mit/MesaLib/dist/src/mesa/swrast/
H A Ds_texture.c92 struct swrast_texture_image *swImg = swrast_texture_image(texImage); local in function:_swrast_alloc_texture_image_buffer
103 assert(!swImg->Buffer);
104 swImg->Buffer = align_malloc(bytesPerSlice * slices, 512);
105 if (!swImg->Buffer)
109 swImg->RowStride = _mesa_format_row_stride(texImage->TexFormat,
113 swImg->ImageSlices[i] = swImg->Buffer + bytesPerSlice * i;
130 struct swrast_texture_image *swImg = swrast_texture_image(texImage); local in function:_swrast_init_texture_image
135 swImg->_IsPowerOfTwo = GL_TRUE;
137 swImg
[all...]
H A Ds_texfilter.c166 const struct swrast_texture_image *swImg = swrast_texture_image_const(img); local in function:linear_texel_locations
171 if (swImg->_IsPowerOfTwo) {
295 const struct swrast_texture_image *swImg = swrast_texture_image_const(img); local in function:nearest_texel_location
303 if (swImg->_IsPowerOfTwo)
855 const struct swrast_texture_image *swImg = swrast_texture_image_const(img); local in function:sample_1d_nearest
866 swImg->FetchTexel(swImg, i, 0, 0, rgba);
880 const struct swrast_texture_image *swImg = swrast_texture_image_const(img); local in function:sample_1d_linear
903 swImg->FetchTexel(swImg, i
1122 const struct swrast_texture_image *swImg = swrast_texture_image_const(img); local in function:sample_2d_nearest
1156 const struct swrast_texture_image *swImg = swrast_texture_image_const(img); local in function:sample_2d_linear
1221 const struct swrast_texture_image *swImg = swrast_texture_image_const(img); local in function:sample_2d_linear_repeat
1387 const struct swrast_texture_image *swImg = swrast_texture_image_const(image); local in function:sample_linear_2d
1421 const struct swrast_texture_image *swImg = swrast_texture_image_const(img); local in function:opt_sample_rgb_2d
1466 const struct swrast_texture_image *swImg = swrast_texture_image_const(img); local in function:opt_sample_rgba_2d
1504 const struct swrast_texture_image *swImg = swrast_texture_image_const(tImg); local in function:sample_lambda_2d
1659 const struct swrast_texture_image *swImg = local in function:sample_2d_ewa
1871 const struct swrast_texture_image *swImg = swrast_texture_image_const(tImg); local in function:sample_lambda_2d_aniso
2024 const struct swrast_texture_image *swImg = swrast_texture_image_const(img); local in function:sample_3d_nearest
2057 const struct swrast_texture_image *swImg = swrast_texture_image_const(img); local in function:sample_3d_linear
2683 const struct swrast_texture_image *swImg = swrast_texture_image_const(img); local in function:sample_nearest_rect
2718 const struct swrast_texture_image *swImg = swrast_texture_image_const(img); local in function:sample_linear_rect
2829 const struct swrast_texture_image *swImg = swrast_texture_image_const(img); local in function:sample_2d_array_nearest
2863 const struct swrast_texture_image *swImg = swrast_texture_image_const(img); local in function:sample_2d_array_linear
3148 const struct swrast_texture_image *swImg = swrast_texture_image_const(img); local in function:sample_1d_array_nearest
3179 const struct swrast_texture_image *swImg = swrast_texture_image_const(img); local in function:sample_1d_array_linear
3550 const struct swrast_texture_image *swImg = swrast_texture_image_const(img); local in function:sample_depth_texture
3756 const struct swrast_texture_image *swImg = local in function:_swrast_choose_texture_sample_func
[all...]
H A Ds_fragprog.c121 const struct swrast_texture_image *swImg = local in function:fetch_texel_deriv
124 const GLfloat texW = (GLfloat) swImg->WidthScale;
125 const GLfloat texH = (GLfloat) swImg->HeightScale;
H A Ds_triangle.c132 const struct swrast_texture_image *swImg = \
137 const GLubyte *texture = (const GLubyte *) swImg->ImageSlices[0]; \
190 const struct swrast_texture_image *swImg = \
195 const GLubyte *texture = (const GLubyte *) swImg->ImageSlices[0]; \
547 const struct swrast_texture_image *swImg = \
551 info.texture = (const GLchan *) swImg->ImageSlices[0]; \
816 const struct swrast_texture_image *swImg = \
818 info.texture = (const GLchan *) swImg->ImageSlices[0]; \
1052 const struct swrast_texture_image *swImg; local in function:_swrast_choose_triangle
1064 swImg
[all...]
H A Ds_span.c503 const struct swrast_texture_image *swImg = local in function:interpolate_texcoords
516 texW = swImg->WidthScale;
517 texH = swImg->HeightScale;

Completed in 19 milliseconds