r300-gallium: organize fragment/vertex shaders
authorJoakim Sindholt <opensource@zhasha.com>
Thu, 25 Jun 2009 23:08:13 +0000 (01:08 +0200)
committerJoakim Sindholt <opensource@zhasha.com>
Thu, 25 Jun 2009 23:13:06 +0000 (01:13 +0200)
commit622858884fc5923c9e7a0c1bb0e80b53f0acb5a7
tree292d68d7b303b7f1d38c98e544e52e3d9e8340f1
parent450b20d1ef8e816fd1ee86a6373e81838bbce0a1
r300-gallium: organize fragment/vertex shaders

Appart from separating r3xx/r5xx fragment shaders, a more consistent
naming scheme has been applied. From now on:
r300 = all chips
r3xx = R300/R400 only
r5xx = R500 only
This way r300_fragment_shader is the master struct, and the structs
r3xx_fragment_shader and r5xx_fragment_shader inherits it.
20 files changed:
src/gallium/drivers/r300/Makefile
src/gallium/drivers/r300/SConscript
src/gallium/drivers/r300/r300_context.h
src/gallium/drivers/r300/r300_debug.c
src/gallium/drivers/r300/r300_debug.h
src/gallium/drivers/r300/r300_emit.c
src/gallium/drivers/r300/r300_emit.h
src/gallium/drivers/r300/r300_fs.c [new file with mode: 0644]
src/gallium/drivers/r300/r300_fs.h [new file with mode: 0644]
src/gallium/drivers/r300/r300_fs_inlines.h [new file with mode: 0644]
src/gallium/drivers/r300/r300_shader_inlines.h [new file with mode: 0644]
src/gallium/drivers/r300/r300_state.c
src/gallium/drivers/r300/r300_surface.c
src/gallium/drivers/r300/r300_surface.h
src/gallium/drivers/r300/r300_vs.c [moved from src/gallium/drivers/r300/r300_state_tcl.c with 99% similarity]
src/gallium/drivers/r300/r300_vs.h [moved from src/gallium/drivers/r300/r300_state_tcl.h with 93% similarity]
src/gallium/drivers/r300/r3xx_fs.c [new file with mode: 0644]
src/gallium/drivers/r300/r3xx_fs.h [new file with mode: 0644]
src/gallium/drivers/r300/r5xx_fs.c [moved from src/gallium/drivers/r300/r300_state_shader.c with 57% similarity]
src/gallium/drivers/r300/r5xx_fs.h [moved from src/gallium/drivers/r300/r300_state_shader.h with 56% similarity]