Home | History | Annotate | Download | only in Renderer

Lines Matching refs:Shader

2026 			const Shader::Instruction *instruction = vertexShader->getInstruction(i);
2028 if(instruction->opcode == Shader::OPCODE_DEF)
2040 else if(instruction->opcode == Shader::OPCODE_DEFI)
2052 else if(instruction->opcode == Shader::OPCODE_DEFB)
2070 const Shader::Instruction *instruction = pixelShader->getInstruction(i);
2072 if(instruction->opcode == Shader::OPCODE_DEF)
2084 else if(instruction->opcode == Shader::OPCODE_DEFI)
2096 else if(instruction->opcode == Shader::OPCODE_DEFB)
2380 void Renderer::setPixelShader(const PixelShader *shader)
2382 context->pixelShader = shader;
2384 loadConstants(shader);
2387 void Renderer::setVertexShader(const VertexShader *shader)
2389 context->vertexShader = shader;
2391 loadConstants(shader);