get mov working
[mesa.git] / src / mesa / pipe / llvm / gallivm_cpu.cpp
index 5f1268bf4f80cdb7d3d17f99c6263c8b541faf13..011cba55c23406bef937c5128b87dc18d2e6bdf2 100644 (file)
@@ -105,10 +105,10 @@ static inline llvm::Function *func_for_shader(struct gallivm_prog *prog)
 
    switch (prog->type) {
    case GALLIVM_VS:
-      func = mod->getFunction("run_vertex_shader");
+      func = mod->getFunction("vs_shader");
       break;
    case GALLIVM_FS:
-      func = mod->getFunction("run_fragment_shader");
+      func = mod->getFunction("fs_shader");
       break;
    default:
       assert(!"Unknown shader type!");