Added Single.material which avoids the use of a texture atlas.

This commit is contained in:
David Williams
2008-04-12 17:54:56 +00:00
parent 5791919f01
commit 0c3352382c
4 changed files with 317 additions and 0 deletions

View File

@ -108,4 +108,18 @@ fragment_program NormalFragmentProgram cg
source NormalFragmentProgram.cg
entry_point main
profiles ps_1_1 arbfp1
}
vertex_program SingleOneLightVertexProgram cg
{
source SingleVertexProgram.cg
entry_point OneLight
profiles vs_1_1 arbvp1
}
fragment_program SingleFragmentProgram cg
{
source SingleFragmentProgram.cg
entry_point main
profiles ps_1_1 arbfp1
}