Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/drivers/swr/
Dswr_draw.cpp105 HANDLE hJitMgr = swr_screen(pipe->screen)->hJitMgr; in swr_draw_vbo() local
106 ctx->vs->soFunc[info->mode] = JitCompileStreamout(hJitMgr, state); in swr_draw_vbo()
128 HANDLE hJitMgr = swr_screen(ctx->pipe.screen)->hJitMgr; in swr_draw_vbo() local
129 velems->fsFunc = JitCompileFetch(hJitMgr, velems->fsState); in swr_draw_vbo()
Dswr_screen.h52 HANDLE hJitMgr; member
Dswr_screen.cpp1063 JitDestroyContext((*screen)->hJitMgr); in swr_destroy_screen_internal()
1163 screen->hJitMgr = JitCreateContext(KNOB_SIMD_WIDTH, "", "swr"); in swr_create_screen_internal()
Dswr_shader.cpp716 reinterpret_cast<JitManager *>(swr_screen(ctx->pipe.screen)->hJitMgr), in swr_compile_gs()
967 reinterpret_cast<JitManager *>(swr_screen(ctx->pipe.screen)->hJitMgr), in swr_compile_vs()
1409 reinterpret_cast<JitManager *>(swr_screen(ctx->pipe.screen)->hJitMgr), in swr_compile_fs()
Dswr_state.cpp1719 HANDLE hJitMgr = screen->hJitMgr; in swr_update_derived() local
1720 func = JitCompileBlend(hJitMgr, compileState); in swr_update_derived()
/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
Dstreamout_jit.cpp326 PFN_SO_FUNC JitStreamoutFunc(HANDLE hJitMgr, const HANDLE hFunc) in JitStreamoutFunc() argument
329 JitManager* pJitMgr = reinterpret_cast<JitManager*>(hJitMgr); in JitStreamoutFunc()
342 extern "C" PFN_SO_FUNC JITCALL JitCompileStreamout(HANDLE hJitMgr, const STREAMOUT_COMPILE_STATE& s… in JitCompileStreamout() argument
344 JitManager* pJitMgr = reinterpret_cast<JitManager*>(hJitMgr); in JitCompileStreamout()
360 return JitStreamoutFunc(hJitMgr, hFunc); in JitCompileStreamout()
Dblend_jit.cpp821 PFN_BLEND_JIT_FUNC JitBlendFunc(HANDLE hJitMgr, const HANDLE hFunc) in JitBlendFunc() argument
824 JitManager* pJitMgr = reinterpret_cast<JitManager*>(hJitMgr); in JitBlendFunc()
837 extern "C" PFN_BLEND_JIT_FUNC JITCALL JitCompileBlend(HANDLE hJitMgr, const BLEND_COMPILE_STATE& st… in JitCompileBlend() argument
839 JitManager* pJitMgr = reinterpret_cast<JitManager*>(hJitMgr); in JitCompileBlend()
846 return JitBlendFunc(hJitMgr, hFunc); in JitCompileBlend()
Dfetch_jit.cpp2903 PFN_FETCH_FUNC JitFetchFunc(HANDLE hJitMgr, const HANDLE hFunc) in JitFetchFunc() argument
2906 JitManager* pJitMgr = reinterpret_cast<JitManager*>(hJitMgr); in JitFetchFunc()
2935 extern "C" PFN_FETCH_FUNC JITCALL JitCompileFetch(HANDLE hJitMgr, const FETCH_COMPILE_STATE& state) in JitCompileFetch() argument
2937 JitManager* pJitMgr = reinterpret_cast<JitManager*>(hJitMgr); in JitCompileFetch()
2944 return JitFetchFunc(hJitMgr, hFunc); in JitCompileFetch()