unsigned int j;
dst_offset_x = 0;
for (j = 0; j < new_width; j++) {
- gdFixed f_i = gd_itofx(i - new_height/2);
- gdFixed f_j = gd_itofx(j-new_width/2);
+ gdFixed f_i = gd_itofx((int)i - (int)new_height/2);
+ gdFixed f_j = gd_itofx((int)j - (int)new_width/2);
gdFixed f_m = gd_mulfx(f_j,f_sin) + gd_mulfx(f_i,f_cos) + f_0_5 + f_H;
gdFixed f_n = gd_mulfx(f_j,f_cos) - gd_mulfx(f_i,f_sin) + f_0_5 + f_W;
long m = gd_fxtoi(f_m);
unsigned int j;
dst_offset_x = 0;
for (j = 0; j < new_width; j++) {
- gdFixed f_i = gd_itofx(i - new_height/ 2);
- gdFixed f_j = gd_itofx(j -new_width / 2);
+ gdFixed f_i = gd_itofx((int)i - (int)new_height/ 2);
+ gdFixed f_j = gd_itofx((int)j - (int)new_width / 2);
gdFixed f_m = gd_mulfx(f_j,f_sin) + gd_mulfx(f_i,f_cos) + f_0_5 + f_H;
gdFixed f_n = gd_mulfx(f_j,f_cos) - gd_mulfx(f_i,f_sin) + f_0_5 + f_W;
long m = gd_fxtoi(f_m);
dst_offset_x = 0;
for (j=0; j < new_width; j++) {
- const gdFixed f_i = gd_itofx(i-new_height/2);
- const gdFixed f_j = gd_itofx(j-new_width/2);
+ const gdFixed f_i = gd_itofx((int)i - (int)new_height/2);
+ const gdFixed f_j = gd_itofx((int)j - (int)new_width/2);
const gdFixed f_m = gd_mulfx(f_j,f_sin) + gd_mulfx(f_i,f_cos) + f_0_5 + f_H;
const gdFixed f_n = gd_mulfx(f_j,f_cos) - gd_mulfx(f_i,f_sin) + f_0_5 + f_W;
const unsigned int m = gd_fxtoi(f_m);
dst_offset_x = 0;
for (j=0; j < new_width; j++) {
- const gdFixed f_i = gd_itofx(i-new_height/2);
- const gdFixed f_j = gd_itofx(j-new_width/2);
+ const gdFixed f_i = gd_itofx((int)i - (int)new_height/2);
+ const gdFixed f_j = gd_itofx((int)j - (int)new_width/2);
const gdFixed f_m = gd_mulfx(f_j,f_sin) + gd_mulfx(f_i,f_cos) + f_0_5 + f_H;
const gdFixed f_n = gd_mulfx(f_j,f_cos) - gd_mulfx(f_i,f_sin) + f_0_5 + f_W;
const int m = gd_fxtoi(f_m);