Lines Matching full:nstate
45 struct pipe_blend_state *nstate = CALLOC_STRUCT(pipe_blend_state);
47 if (nstate == NULL) {
50 *nstate = *state;
51 return nstate;
57 struct pipe_depth_stencil_alpha_state *nstate = CALLOC_STRUCT(pipe_depth_stencil_alpha_state);
59 if (nstate == NULL) {
62 *nstate = *state;
63 return nstate;
69 struct pipe_rasterizer_state *nstate = CALLOC_STRUCT(pipe_rasterizer_state);
71 if (nstate == NULL) {
74 *nstate = *state;
75 return nstate;
81 struct pipe_sampler_state *nstate = CALLOC_STRUCT(pipe_sampler_state);
83 if (nstate == NULL) {
86 *nstate = *state;
87 return nstate;
227 struct pipe_vertex_element *nstate = CALLOC_STRUCT(pipe_vertex_element);
229 if (nstate == NULL) {
232 *nstate = *state;
233 return nstate;
239 struct pipe_shader_state *nstate = CALLOC_STRUCT(pipe_shader_state);
241 if (nstate == NULL) {
244 *nstate = *state;
245 return nstate;