/** * Create new draw module context, with LLVM JIT. */ struct draw_context * draw_create(struct pipe_context *pipe) { return draw_create_context(pipe, TRUE); }
/** * Create a new draw context, without LLVM JIT. */ struct draw_context * draw_create_no_llvm(struct pipe_context *pipe) { return draw_create_context(pipe, FALSE); }
struct draw_context * draw_create_with_llvm_context(struct pipe_context *pipe, void *context) { return draw_create_context(pipe, context, TRUE); }