[DEV] error on signing counter
This commit is contained in:
parent
bb58a8c06e
commit
34eac48f51
@ -174,8 +174,8 @@ bool egami::generateDistanceFieldFile(const std::string& _input, const std::stri
|
|||||||
// Generate distance field :
|
// Generate distance field :
|
||||||
egami::ImageMono input;
|
egami::ImageMono input;
|
||||||
input.resize(data.getSize());
|
input.resize(data.getSize());
|
||||||
for (size_t yyy = 0; yyy < data.getSize().y(); ++yyy) {
|
for (int32_t yyy = 0; yyy < data.getSize().y(); ++yyy) {
|
||||||
for (size_t xxx = 0; xxx < data.getSize().x(); ++xxx) {
|
for (int32_t xxx = 0; xxx < data.getSize().x(); ++xxx) {
|
||||||
input.set(ivec2(xxx, yyy), data.get(ivec2(xxx, yyy)).a() );
|
input.set(ivec2(xxx, yyy), data.get(ivec2(xxx, yyy)).a() );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user