Home | History | Annotate | Download | only in glsl
      1 #ifndef IR_TO_LLVM_H_
      2 #define IR_TO_LLVM_H_
      3 
      4 #include "llvm/Module.h"
      5 #include "ir.h"
      6 
      7 struct llvm::Module * glsl_ir_to_llvm_module(struct exec_list *ir, llvm::Module * mod,
      8                const struct GGLState * gglCtx, const char * shaderSuffix);
      9 
     10 #endif /* IR_TO_LLVM_H_ */
     11