Remove comments in confirmed files.

This commit is contained in:
luxsie 2015-04-11 13:31:28 +08:00
parent 94441d7df3
commit 02c263fc19
5 changed files with 1 additions and 9 deletions

View file

@ -200,7 +200,6 @@ u32 RSXThread::OutOfArgsCount(const uint x, const u32 cmd, const u32 count, cons
#define case_32(offset, step) \
case_16(offset, step) \
case_16(offset + 16*step, step)
// TODO:: Syphurith: I'm not sure about whether this is correct or missing a break;.
#define case_range(n, offset, step) \
case_##n(offset, step) \
index = (cmd - offset) / step
@ -369,7 +368,6 @@ void RSXThread::DoCmd(const u32 fcmd, const u32 cmd, const u32 args_addr, const
}
// Texture
// TODO:: Syphurith: Ensure it don't need to break;? case 0: A=0; case 1: A=1; would always give you A=1.
case_range(16, NV4097_SET_TEXTURE_FORMAT, 0x20);
case_range(16, NV4097_SET_TEXTURE_OFFSET, 0x20);
case_range(16, NV4097_SET_TEXTURE_FILTER, 0x20);
@ -400,7 +398,6 @@ void RSXThread::DoCmd(const u32 fcmd, const u32 cmd, const u32 args_addr, const
}
// Vertex Texture
// TODO:: Syphurith: Ensure it don't need to break;? Similiar reason..
case_range(4, NV4097_SET_VERTEX_TEXTURE_FORMAT, 0x20);
case_range(4, NV4097_SET_VERTEX_TEXTURE_OFFSET, 0x20);
case_range(4, NV4097_SET_VERTEX_TEXTURE_FILTER, 0x20);