Lines Matching refs:hwcso
55 fd_vs_state_bind(struct pipe_context *pctx, void *hwcso) in_dt
58 ctx->prog.vs = hwcso;
60 update_bound_stage(ctx, PIPE_SHADER_VERTEX, !!hwcso);
64 fd_tcs_state_bind(struct pipe_context *pctx, void *hwcso) in_dt
67 ctx->prog.hs = hwcso;
69 update_bound_stage(ctx, PIPE_SHADER_TESS_CTRL, !!hwcso);
73 fd_tes_state_bind(struct pipe_context *pctx, void *hwcso) in_dt
76 ctx->prog.ds = hwcso;
78 update_bound_stage(ctx, PIPE_SHADER_TESS_EVAL, !!hwcso);
82 fd_gs_state_bind(struct pipe_context *pctx, void *hwcso) in_dt
85 ctx->prog.gs = hwcso;
87 update_bound_stage(ctx, PIPE_SHADER_GEOMETRY, !!hwcso);
91 fd_fs_state_bind(struct pipe_context *pctx, void *hwcso) in_dt
94 ctx->prog.fs = hwcso;
96 update_bound_stage(ctx, PIPE_SHADER_FRAGMENT, !!hwcso);