Skip copying unnecessary byte during blitting
This commit is contained in:
parent
6ab4984350
commit
c7dd1520c6
1 changed files with 2 additions and 1 deletions
|
@ -183,7 +183,8 @@ ATTRIBUTE_HOT void RenderBackend_Blit(RenderBackend_Surface *source_surface, con
|
||||||
*destination_pointer++ = *source_pointer++;
|
*destination_pointer++ = *source_pointer++;
|
||||||
*destination_pointer++ = *source_pointer++;
|
*destination_pointer++ = *source_pointer++;
|
||||||
*destination_pointer++ = *source_pointer++;
|
*destination_pointer++ = *source_pointer++;
|
||||||
*destination_pointer++ = *source_pointer++;
|
destination_pointer++;
|
||||||
|
source_pointer++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue