Merge pull request #871 from LaurensVoerman/commit_tgaFix

fix debug compile error for ReaderWriterTGA
This commit is contained in:
OpenSceneGraph git repository 2019-12-16 11:54:12 +00:00 committed by GitHub
commit 994b066329
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -656,7 +656,7 @@ int *numComponents_ret)
{
rle_decode(&src, linebuf.data(), width*depth, &rleRemaining,
&rleIsCompressed, rleCurrent, rleEntrySize);
assert(src <= buf + size);
assert(src <= buf.data() + size);
for (x = 0; x < width; x++)
{
@ -722,7 +722,7 @@ int *numComponents_ret)
{
rle_decode(&src, linebuf.data(), width*depth, &rleRemaining,
&rleIsCompressed, rleCurrent, rleEntrySize);
assert(src <= buf + size);
assert(src <= buf.data() + size);
for (x = 0; x < width; x++)
{
convert_data(linebuf.data(), dest, bLeftToRight ? x : (width-1) - x, depth, format);