Searched refs:hJitMgr (Results 1 – 8 of 8) sorted by relevance
/third_party/mesa3d/src/gallium/drivers/swr/ |
D | swr_draw.cpp | 140 HANDLE hJitMgr = swr_screen(pipe->screen)->hJitMgr; in swr_draw_vbo() local 141 ctx->vs->soFunc[info->mode] = JitCompileStreamout(hJitMgr, state); in swr_draw_vbo() 163 HANDLE hJitMgr = swr_screen(ctx->pipe.screen)->hJitMgr; in swr_draw_vbo() local 164 velems->fsFunc = JitCompileFetch(hJitMgr, velems->fsState); in swr_draw_vbo()
|
D | swr_screen.h | 55 HANDLE hJitMgr; member
|
D | swr_screen.cpp | 1042 JitDestroyContext((*screen)->hJitMgr); in swr_destroy_screen_internal() 1139 screen->hJitMgr = JitCreateContext(KNOB_SIMD_WIDTH, "", "swr"); in swr_create_screen_internal()
|
D | swr_shader.cpp | 2259 reinterpret_cast<JitManager *>(swr_screen(ctx->pipe.screen)->hJitMgr), in swr_compile_gs() 2271 reinterpret_cast<JitManager *>(swr_screen(ctx->pipe.screen)->hJitMgr), in swr_compile_tcs() 2285 reinterpret_cast<JitManager *>(swr_screen(ctx->pipe.screen)->hJitMgr), in swr_compile_tes() 2563 reinterpret_cast<JitManager *>(swr_screen(ctx->pipe.screen)->hJitMgr), in swr_compile_vs() 3034 reinterpret_cast<JitManager *>(swr_screen(ctx->pipe.screen)->hJitMgr), in swr_compile_fs()
|
D | swr_state.cpp | 1993 HANDLE hJitMgr = screen->hJitMgr; in swr_update_derived() local 1994 func = JitCompileBlend(hJitMgr, compileState); in swr_update_derived()
|
/third_party/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/ |
D | streamout_jit.cpp | 339 PFN_SO_FUNC JitStreamoutFunc(HANDLE hJitMgr, const HANDLE hFunc) in JitStreamoutFunc() argument 342 JitManager* pJitMgr = reinterpret_cast<JitManager*>(hJitMgr); in JitStreamoutFunc() 359 extern "C" PFN_SO_FUNC JITCALL JitCompileStreamout(HANDLE hJitMgr, in JitCompileStreamout() argument 362 JitManager* pJitMgr = reinterpret_cast<JitManager*>(hJitMgr); in JitCompileStreamout() 378 return JitStreamoutFunc(hJitMgr, hFunc); in JitCompileStreamout()
|
D | blend_jit.cpp | 896 PFN_BLEND_JIT_FUNC JitBlendFunc(HANDLE hJitMgr, const HANDLE hFunc) in JitBlendFunc() argument 899 JitManager* pJitMgr = reinterpret_cast<JitManager*>(hJitMgr); in JitBlendFunc() 913 extern "C" PFN_BLEND_JIT_FUNC JITCALL JitCompileBlend(HANDLE hJitMgr, in JitCompileBlend() argument 916 JitManager* pJitMgr = reinterpret_cast<JitManager*>(hJitMgr); in JitCompileBlend() 923 return JitBlendFunc(hJitMgr, hFunc); in JitCompileBlend()
|
D | fetch_jit.cpp | 2290 PFN_FETCH_FUNC JitFetchFunc(HANDLE hJitMgr, const HANDLE hFunc) in JitFetchFunc() argument 2293 JitManager* pJitMgr = reinterpret_cast<JitManager*>(hJitMgr); in JitFetchFunc() 2322 extern "C" PFN_FETCH_FUNC JITCALL JitCompileFetch(HANDLE hJitMgr, const FETCH_COMPILE_STATE& state) in JitCompileFetch() argument 2324 JitManager* pJitMgr = reinterpret_cast<JitManager*>(hJitMgr); in JitCompileFetch() 2331 return JitFetchFunc(hJitMgr, hFunc); in JitCompileFetch()
|