+ use 'typedef byte' instead of uint_8t
This commit is contained in:
parent
c937fe280a
commit
f65f3782dc
1 changed files with 4 additions and 4 deletions
|
@ -88,7 +88,7 @@ namespace mapnik {
|
||||||
unsigned blues;
|
unsigned blues;
|
||||||
unsigned count;
|
unsigned count;
|
||||||
unsigned count2;
|
unsigned count2;
|
||||||
uint8_t index;
|
byte index;
|
||||||
};
|
};
|
||||||
struct node_cmp
|
struct node_cmp
|
||||||
{
|
{
|
||||||
|
@ -214,9 +214,9 @@ namespace mapnik {
|
||||||
if (itr->count != 0)
|
if (itr->count != 0)
|
||||||
{
|
{
|
||||||
unsigned count = itr->count;
|
unsigned count = itr->count;
|
||||||
palette.push_back(rgb(uint8_t(itr->reds/float(count)),
|
palette.push_back(rgb(byte(itr->reds/float(count)),
|
||||||
uint8_t(itr->greens/float(count)),
|
byte(itr->greens/float(count)),
|
||||||
uint8_t(itr->blues/float(count))));
|
byte(itr->blues/float(count))));
|
||||||
itr->index = palette.size() - 1;
|
itr->index = palette.size() - 1;
|
||||||
}
|
}
|
||||||
for (unsigned i=0; i < 8 ;++i)
|
for (unsigned i=0; i < 8 ;++i)
|
||||||
|
|
Loading…
Reference in a new issue