change something about edge marking which made no sense to me, re: picross edge marking #1301. if we can find more evidence about this topic, write it in the comments
This commit is contained in:
parent
593d82ca2b
commit
2469ecb419
|
@ -1368,8 +1368,10 @@ void SoftRasterizerEngine::framebufferProcess()
|
|||
edgeMarkColors[i].g = GFX3D_5TO6(edgeMarkColors[i].g);
|
||||
edgeMarkColors[i].b = GFX3D_5TO6(edgeMarkColors[i].b);
|
||||
|
||||
// this seems to be the only thing that selectively disables edge marking
|
||||
edgeMarkDisabled[i] = (col == 0x7FFF);
|
||||
//zero 20-jun-2013 - this doesnt make any sense. at least, it should be related to the 0x8000 bit. if this is undocumented behaviour, lets write about which scenario proves it here, or which scenario is requiring this code.
|
||||
//// this seems to be the only thing that selectively disables edge marking
|
||||
//edgeMarkDisabled[i] = (col == 0x7FFF);
|
||||
edgeMarkDisabled[i] = false;
|
||||
}
|
||||
|
||||
for(int i=0,y=0;y<192;y++)
|
||||
|
|
Loading…
Reference in New Issue