Symbol: image_subpixel_scale
headers/libs/agg/agg_image_filters.h
42
image_subpixel_mask = image_subpixel_scale - 1 //----image_subpixel_mask
headers/libs/agg/agg_image_filters.h
59
double x = double(i) / double(image_subpixel_scale);
headers/libs/agg/agg_span_image_filter.h
157
m_rx = uround( scale_x * double(image_subpixel_scale));
headers/libs/agg/agg_span_image_filter.h
158
m_rx_inv = uround(1.0/scale_x * double(image_subpixel_scale));
headers/libs/agg/agg_span_image_filter.h
160
m_ry = uround( scale_y * double(image_subpixel_scale));
headers/libs/agg/agg_span_image_filter.h
161
m_ry_inv = uround(1.0/scale_y * double(image_subpixel_scale));
headers/libs/agg/agg_span_image_filter.h
191
m_blur_x(image_subpixel_scale),
headers/libs/agg/agg_span_image_filter.h
192
m_blur_y(image_subpixel_scale)
headers/libs/agg/agg_span_image_filter.h
201
m_blur_x(image_subpixel_scale),
headers/libs/agg/agg_span_image_filter.h
202
m_blur_y(image_subpixel_scale)
headers/libs/agg/agg_span_image_filter.h
210
double blur_x() const { return double(m_blur_x) / double(image_subpixel_scale); }
headers/libs/agg/agg_span_image_filter.h
211
double blur_y() const { return double(m_blur_y) / double(image_subpixel_scale); }
headers/libs/agg/agg_span_image_filter.h
212
void blur_x(double v) { m_blur_x = uround(v * double(image_subpixel_scale)); }
headers/libs/agg/agg_span_image_filter.h
213
void blur_y(double v) { m_blur_y = uround(v * double(image_subpixel_scale)); }
headers/libs/agg/agg_span_image_filter.h
215
m_blur_y = uround(v * double(image_subpixel_scale)); }
headers/libs/agg/agg_span_image_filter.h
220
if(*rx < image_subpixel_scale) *rx = image_subpixel_scale;
headers/libs/agg/agg_span_image_filter.h
221
if(*ry < image_subpixel_scale) *ry = image_subpixel_scale;
headers/libs/agg/agg_span_image_filter.h
222
if(*rx > image_subpixel_scale * m_scale_limit)
headers/libs/agg/agg_span_image_filter.h
224
*rx = image_subpixel_scale * m_scale_limit;
headers/libs/agg/agg_span_image_filter.h
226
if(*ry > image_subpixel_scale * m_scale_limit)
headers/libs/agg/agg_span_image_filter.h
228
*ry = image_subpixel_scale * m_scale_limit;
headers/libs/agg/agg_span_image_filter.h
232
if(*rx < image_subpixel_scale) *rx = image_subpixel_scale;
headers/libs/agg/agg_span_image_filter.h
233
if(*ry < image_subpixel_scale) *ry = image_subpixel_scale;
headers/libs/agg/agg_span_image_filter.h
46
m_dx_int(image_subpixel_scale / 2),
headers/libs/agg/agg_span_image_filter.h
47
m_dy_int(image_subpixel_scale / 2)
headers/libs/agg/agg_span_image_filter.h
67
m_dx_int = iround(dx * image_subpixel_scale);
headers/libs/agg/agg_span_image_filter.h
68
m_dy_int = iround(dy * image_subpixel_scale);
headers/libs/agg/agg_span_image_filter_gray.h
126
fg = image_subpixel_scale * image_subpixel_scale / 2;
headers/libs/agg/agg_span_image_filter_gray.h
132
fg += *fg_ptr * (image_subpixel_scale - x_hr) * (image_subpixel_scale - y_hr);
headers/libs/agg/agg_span_image_filter_gray.h
135
fg += *fg_ptr * x_hr * (image_subpixel_scale - y_hr);
headers/libs/agg/agg_span_image_filter_gray.h
138
fg += *fg_ptr * (image_subpixel_scale - x_hr) * y_hr;
headers/libs/agg/agg_span_image_filter_gray.h
213
fg = image_subpixel_scale * image_subpixel_scale / 2;
headers/libs/agg/agg_span_image_filter_gray.h
219
fg += *fg_ptr++ * (image_subpixel_scale - x_hr) * (image_subpixel_scale - y_hr);
headers/libs/agg/agg_span_image_filter_gray.h
220
fg += *fg_ptr++ * (image_subpixel_scale - y_hr) * x_hr;
headers/libs/agg/agg_span_image_filter_gray.h
225
fg += *fg_ptr++ * (image_subpixel_scale - x_hr) * y_hr;
headers/libs/agg/agg_span_image_filter_gray.h
243
src_alpha = image_subpixel_scale * image_subpixel_scale / 2;
headers/libs/agg/agg_span_image_filter_gray.h
248
weight = (image_subpixel_scale - x_hr) *
headers/libs/agg/agg_span_image_filter_gray.h
249
(image_subpixel_scale - y_hr);
headers/libs/agg/agg_span_image_filter_gray.h
265
weight = x_hr * (image_subpixel_scale - y_hr);
headers/libs/agg/agg_span_image_filter_gray.h
282
weight = (image_subpixel_scale - x_hr) * y_hr;
headers/libs/agg/agg_span_image_filter_gray.h
389
weight = (weight_array[x_hr + image_subpixel_scale] *
headers/libs/agg/agg_span_image_filter_gray.h
390
weight_array[y_hr + image_subpixel_scale] +
headers/libs/agg/agg_span_image_filter_gray.h
397
weight_array[y_hr + image_subpixel_scale] +
headers/libs/agg/agg_span_image_filter_gray.h
403
weight = (weight_array[x_hr + image_subpixel_scale] *
headers/libs/agg/agg_span_image_filter_gray.h
505
x_hr += image_subpixel_scale;
headers/libs/agg/agg_span_image_filter_gray.h
510
y_hr += image_subpixel_scale;
headers/libs/agg/agg_span_image_filter_gray.h
675
int rx_inv = image_subpixel_scale;
headers/libs/agg/agg_span_image_filter_gray.h
676
int ry_inv = image_subpixel_scale;
headers/libs/agg/agg_span_image_filter_gray.h
681
rx_inv = image_subpixel_scale * image_subpixel_scale / rx;
headers/libs/agg/agg_span_image_filter_gray.h
682
ry_inv = image_subpixel_scale * image_subpixel_scale / ry;
headers/libs/agg/agg_span_image_filter_rgb.h
136
fg[2] = image_subpixel_scale * image_subpixel_scale / 2;
headers/libs/agg/agg_span_image_filter_rgb.h
142
weight = (image_subpixel_scale - x_hr) *
headers/libs/agg/agg_span_image_filter_rgb.h
143
(image_subpixel_scale - y_hr);
headers/libs/agg/agg_span_image_filter_rgb.h
149
weight = x_hr * (image_subpixel_scale - y_hr);
headers/libs/agg/agg_span_image_filter_rgb.h
155
weight = (image_subpixel_scale - x_hr) * y_hr;
headers/libs/agg/agg_span_image_filter_rgb.h
246
fg[2] = image_subpixel_scale * image_subpixel_scale / 2;
headers/libs/agg/agg_span_image_filter_rgb.h
254
weight = (image_subpixel_scale - x_hr) *
headers/libs/agg/agg_span_image_filter_rgb.h
255
(image_subpixel_scale - y_hr);
headers/libs/agg/agg_span_image_filter_rgb.h
260
weight = x_hr * (image_subpixel_scale - y_hr);
headers/libs/agg/agg_span_image_filter_rgb.h
269
weight = (image_subpixel_scale - x_hr) * y_hr;
headers/libs/agg/agg_span_image_filter_rgb.h
299
src_alpha = image_subpixel_scale * image_subpixel_scale / 2;
headers/libs/agg/agg_span_image_filter_rgb.h
304
weight = (image_subpixel_scale - x_hr) *
headers/libs/agg/agg_span_image_filter_rgb.h
305
(image_subpixel_scale - y_hr);
headers/libs/agg/agg_span_image_filter_rgb.h
327
weight = x_hr * (image_subpixel_scale - y_hr);
headers/libs/agg/agg_span_image_filter_rgb.h
350
weight = (image_subpixel_scale - x_hr) * y_hr;
headers/libs/agg/agg_span_image_filter_rgb.h
474
weight = (weight_array[x_hr + image_subpixel_scale] *
headers/libs/agg/agg_span_image_filter_rgb.h
475
weight_array[y_hr + image_subpixel_scale] +
headers/libs/agg/agg_span_image_filter_rgb.h
484
weight_array[y_hr + image_subpixel_scale] +
headers/libs/agg/agg_span_image_filter_rgb.h
492
weight = (weight_array[x_hr + image_subpixel_scale] *
headers/libs/agg/agg_span_image_filter_rgb.h
612
x_hr += image_subpixel_scale;
headers/libs/agg/agg_span_image_filter_rgb.h
617
y_hr += image_subpixel_scale;
headers/libs/agg/agg_span_image_filter_rgb.h
807
int rx_inv = image_subpixel_scale;
headers/libs/agg/agg_span_image_filter_rgb.h
808
int ry_inv = image_subpixel_scale;
headers/libs/agg/agg_span_image_filter_rgb.h
813
rx_inv = image_subpixel_scale * image_subpixel_scale / rx;
headers/libs/agg/agg_span_image_filter_rgb.h
814
ry_inv = image_subpixel_scale * image_subpixel_scale / ry;
headers/libs/agg/agg_span_image_filter_rgba.h
139
fg[3] = image_subpixel_scale * image_subpixel_scale / 2;
headers/libs/agg/agg_span_image_filter_rgba.h
145
weight = (image_subpixel_scale - x_hr) *
headers/libs/agg/agg_span_image_filter_rgba.h
146
(image_subpixel_scale - y_hr);
headers/libs/agg/agg_span_image_filter_rgba.h
153
weight = x_hr * (image_subpixel_scale - y_hr);
headers/libs/agg/agg_span_image_filter_rgba.h
160
weight = (image_subpixel_scale - x_hr) * y_hr;
headers/libs/agg/agg_span_image_filter_rgba.h
254
fg[3] = image_subpixel_scale * image_subpixel_scale / 2;
headers/libs/agg/agg_span_image_filter_rgba.h
262
weight = (image_subpixel_scale - x_hr) *
headers/libs/agg/agg_span_image_filter_rgba.h
263
(image_subpixel_scale - y_hr);
headers/libs/agg/agg_span_image_filter_rgba.h
269
weight = x_hr * (image_subpixel_scale - y_hr);
headers/libs/agg/agg_span_image_filter_rgba.h
279
weight = (image_subpixel_scale - x_hr) * y_hr;
headers/libs/agg/agg_span_image_filter_rgba.h
311
fg[3] = image_subpixel_scale * image_subpixel_scale / 2;
headers/libs/agg/agg_span_image_filter_rgba.h
316
weight = (image_subpixel_scale - x_hr) *
headers/libs/agg/agg_span_image_filter_rgba.h
317
(image_subpixel_scale - y_hr);
headers/libs/agg/agg_span_image_filter_rgba.h
339
weight = x_hr * (image_subpixel_scale - y_hr);
headers/libs/agg/agg_span_image_filter_rgba.h
362
weight = (image_subpixel_scale - x_hr) * y_hr;
headers/libs/agg/agg_span_image_filter_rgba.h
486
weight = (weight_array[x_hr + image_subpixel_scale] *
headers/libs/agg/agg_span_image_filter_rgba.h
487
weight_array[y_hr + image_subpixel_scale] +
headers/libs/agg/agg_span_image_filter_rgba.h
497
weight_array[y_hr + image_subpixel_scale] +
headers/libs/agg/agg_span_image_filter_rgba.h
506
weight = (weight_array[x_hr + image_subpixel_scale] *
headers/libs/agg/agg_span_image_filter_rgba.h
630
x_hr += image_subpixel_scale;
headers/libs/agg/agg_span_image_filter_rgba.h
635
y_hr += image_subpixel_scale;
headers/libs/agg/agg_span_image_filter_rgba.h
831
int rx_inv = image_subpixel_scale;
headers/libs/agg/agg_span_image_filter_rgba.h
832
int ry_inv = image_subpixel_scale;
headers/libs/agg/agg_span_image_filter_rgba.h
837
rx_inv = image_subpixel_scale * image_subpixel_scale / rx;
headers/libs/agg/agg_span_image_filter_rgba.h
838
ry_inv = image_subpixel_scale * image_subpixel_scale / ry;
src/libs/agg/src/agg_image_filters.cpp
53
for(i = 0; i < image_subpixel_scale; i++)
src/libs/agg/src/agg_image_filters.cpp
61
sum += m_weight_array[j * image_subpixel_scale + i];
src/libs/agg/src/agg_image_filters.cpp
70
sum += m_weight_array[j * image_subpixel_scale + i] =
src/libs/agg/src/agg_image_filters.cpp
71
iround(m_weight_array[j * image_subpixel_scale + i] * k);
src/libs/agg/src/agg_image_filters.cpp
81
int v = m_weight_array[idx * image_subpixel_scale + i];
src/libs/agg/src/agg_image_filters.cpp
84
m_weight_array[idx * image_subpixel_scale + i] += inc;