Properly resolve more warnings about comparison between signed and

between signed and unsigned integer expressions.

Could people please report any further warnings.

Angus


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3603 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2002-02-28 11:00:48 +00:00
parent b5fcf8a4b8
commit 04196c1a6c
2 changed files with 48 additions and 36 deletions

View File

@ -1,3 +1,8 @@
2002-02-28 Angus Leeming <a.leeming@ic.ac.uk>
* GraphicsImageXPM.C: properly resolve more warnings about comparison
between signed and unsigned integer expressions.
2002-02-27 Angus Leeming <a.leeming@ic.ac.uk> 2002-02-27 Angus Leeming <a.leeming@ic.ac.uk>
* GraphicsCache.C: improve commentary to graphicsInit and where it * GraphicsCache.C: improve commentary to graphicsInit and where it

View File

@ -230,8 +230,10 @@ void GImageXPM::clip(GParams const & params)
// No clipping is necessary. // No clipping is necessary.
return; return;
unsigned int const new_width = params.bb.xr - params.bb.xl; typedef unsigned int dimension;
unsigned int const new_height = params.bb.yt - params.bb.yb;
dimension const new_width = params.bb.xr - params.bb.xl;
dimension const new_height = params.bb.yt - params.bb.yb;
if (new_width > image_.width() || new_height > image_.height()) if (new_width > image_.width() || new_height > image_.height())
// Bounds are invalid. // Bounds are invalid.
@ -241,14 +243,14 @@ void GImageXPM::clip(GParams const & params)
// Bounds are unchanged. // Bounds are unchanged.
return; return;
unsigned int * new_data = image_.initialisedData(new_width, new_height); dimension * new_data = image_.initialisedData(new_width, new_height);
unsigned int const * old_data = image_.data(); dimension const * old_data = image_.data();
unsigned int * it = new_data; dimension * it = new_data;
unsigned int const * start_row = old_data; dimension const * start_row = old_data;
for (int row = params.bb.yb; row < params.bb.yt; ++row) { for (size_t row = params.bb.yb; row < params.bb.yt; ++row) {
unsigned int const * begin = start_row + params.bb.xl; dimension const * begin = start_row + params.bb.xl;
unsigned int const * end = start_row + params.bb.xr; dimension const * end = start_row + params.bb.xr;
it = std::copy(begin, end, it); it = std::copy(begin, end, it);
start_row += image_.width(); start_row += image_.width();
} }
@ -295,28 +297,30 @@ void GImageXPM::rotate(GParams const & params)
max_x = std::max(max_x, x_rot); min_x = std::min(min_x, x_rot); max_x = std::max(max_x, x_rot); min_x = std::min(min_x, x_rot);
max_y = std::max(max_y, y_rot); min_y = std::min(min_y, y_rot); max_y = std::max(max_y, y_rot); min_y = std::min(min_y, y_rot);
unsigned int const new_width = 1 + int(max_x - min_x); // round up! typedef unsigned int dimension;
unsigned int const new_height = 1 + int(max_y - min_y);
dimension const new_width = 1 + int(max_x - min_x); // round up!
dimension const new_height = 1 + int(max_y - min_y);
unsigned int * new_data = image_.initialisedData(new_width, new_height); dimension * new_data = image_.initialisedData(new_width, new_height);
unsigned int const * old_data = image_.data(); dimension const * old_data = image_.data();
// rotate the data // rotate the data
for (int y_old = 0; y_old < image_.height(); ++y_old) { for (dimension y_old = 0; y_old < image_.height(); ++y_old) {
for (int x_old = 0; x_old < image_.width(); ++x_old) { for (dimension x_old = 0; x_old < image_.width(); ++x_old) {
int x_new = int(cos_a * x_old - sin_a * y_old - min_x); double const x_pos = cos_a*x_old - sin_a*y_old - min_x;
int y_new = int(sin_a * x_old + cos_a * y_old - min_y); double const y_pos = sin_a*x_old + cos_a*y_old - min_y;
// ensure that there are no rounding errors // ensure that there are no rounding errors
y_new = std::min(int(new_height - 1), y_new); dimension x_new = (x_pos > 0) ? dimension(x_pos) : 0;
y_new = std::max(0, y_new); dimension y_new = (y_pos > 0) ? dimension(y_pos) : 0;
x_new = std::min(int(new_width - 1), x_new); x_new = std::min(new_width - 1, x_new);
x_new = std::max(0, x_new); y_new = std::min(new_height - 1, y_new);
int const old_id = x_old + image_.width() * y_old; size_t const id_old = x_old + image_.width() * y_old;
int const new_id = x_new + new_width * y_new; size_t const id_new = x_new + new_width * y_new;
new_data[new_id] = old_data[old_id]; new_data[id_new] = old_data[id_old];
} }
} }
@ -329,17 +333,19 @@ void GImageXPM::scale(GParams const & params)
if (image_.empty()) if (image_.empty())
return; return;
typedef unsigned int dimension;
// boost::tie produces horrible compilation errors on my machine // boost::tie produces horrible compilation errors on my machine
// Angus 25 Feb 2002 // Angus 25 Feb 2002
std::pair<unsigned int, unsigned int> d = getScaledDimensions(params); std::pair<dimension, dimension> d = getScaledDimensions(params);
unsigned int const new_width = d.first; dimension const new_width = d.first;
unsigned int const new_height = d.second; dimension const new_height = d.second;
if (new_width == getWidth() && new_height == getHeight()) if (new_width == getWidth() && new_height == getHeight())
// No scaling needed // No scaling needed
return; return;
unsigned int * new_data = image_.initialisedData(new_width, new_height); dimension * new_data = image_.initialisedData(new_width, new_height);
unsigned int const * old_data = image_.data(); dimension const * old_data = image_.data();
double const x_scale = double(image_.width()) / double(new_width); double const x_scale = double(image_.width()) / double(new_width);
double const y_scale = double(image_.height()) / double(new_height); double const y_scale = double(image_.height()) / double(new_height);
@ -347,15 +353,16 @@ void GImageXPM::scale(GParams const & params)
// A very simple scaling routine. // A very simple scaling routine.
// Ascertain the old pixel corresponding to the new one. // Ascertain the old pixel corresponding to the new one.
// There is no dithering at all here. // There is no dithering at all here.
for (int x_new = 0; x_new < new_width; ++x_new) { for (dimension x_new = 0; x_new < new_width; ++x_new) {
int x_old = int(x_new * x_scale); dimension x_old = dimension(x_new * x_scale);
for (int y_new = 0; y_new < new_height; ++y_new) {
int y_old = int(y_new * y_scale);
int const old_id = x_old + image_.width() * y_old; for (dimension y_new = 0; y_new < new_height; ++y_new) {
int const new_id = x_new + new_width * y_new; dimension y_old = dimension(y_new * y_scale);
new_data[new_id] = old_data[old_id]; size_t const id_old = x_old + image_.width() * y_old;
size_t const id_new = x_new + new_width * y_new;
new_data[id_new] = old_data[id_old];
} }
} }