Home
last modified time | relevance | path

Searched refs:hJitMgr (Results 1 – 8 of 8) sorted by relevance

/third_party/mesa3d/src/gallium/drivers/swr/
Dswr_draw.cpp140 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()
Dswr_screen.h55 HANDLE hJitMgr; member
Dswr_screen.cpp1042 JitDestroyContext((*screen)->hJitMgr); in swr_destroy_screen_internal()
1139 screen->hJitMgr = JitCreateContext(KNOB_SIMD_WIDTH, "", "swr"); in swr_create_screen_internal()
Dswr_shader.cpp2259 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()
Dswr_state.cpp1993 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/
Dstreamout_jit.cpp339 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()
Dblend_jit.cpp896 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()
Dfetch_jit.cpp2290 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()