mirror of
https://git.code.sf.net/p/quake/newtree
synced 2024-11-21 19:51:18 +00:00
Some optimizations, use memset instead of for loop with *bl++=0.
Uses almost 1% less CPU for me :-)
This commit is contained in:
parent
ea7e76fab7
commit
19c37bbcb3
1 changed files with 4 additions and 14 deletions
|
@ -235,22 +235,12 @@ R_BuildLightMap (msurface_t *surf, byte * dest, int stride)
|
|||
|
||||
// set to full bright if no light data
|
||||
if (!cl.worldmodel->lightdata) {
|
||||
bl = blocklights;
|
||||
for (i = 0; i < size; i++) {
|
||||
*bl++ = 255 << 8;
|
||||
*bl++ = 255 << 8;
|
||||
*bl++ = 255 << 8;
|
||||
}
|
||||
memset (&blocklights[0], 255, size * 3 * sizeof (unsigned int));
|
||||
goto store;
|
||||
}
|
||||
// clear to no light
|
||||
bl = blocklights;
|
||||
for (i = 0; i < size; i++) {
|
||||
*bl++ = 0;
|
||||
*bl++ = 0;
|
||||
*bl++ = 0;
|
||||
}
|
||||
bl = blocklights;
|
||||
|
||||
memset (&blocklights[0], 0, size * 3 * sizeof (unsigned int));
|
||||
|
||||
// add all the lightmaps
|
||||
if (lightmap) {
|
||||
|
|
Loading…
Reference in a new issue