Home | History | Annotate | Download | only in gd3d11

Lines Matching refs:shader_cso

1411 		void* shader_cso;
1417 shader_cso = immediate_pipe->create_vs_state(immediate_pipe, &tgsi_shader);
1418 shader = (GalliumD3D11Shader<>*)new GalliumD3D11VertexShader(this, shader_cso);
1421 shader_cso = immediate_pipe->create_fs_state(immediate_pipe, &tgsi_shader);
1422 shader = (GalliumD3D11Shader<>*)new GalliumD3D11PixelShader(this, shader_cso);
1425 shader_cso = immediate_pipe->create_gs_state(immediate_pipe, &tgsi_shader);
1426 shader = (GalliumD3D11Shader<>*)new GalliumD3D11GeometryShader(this, shader_cso);
1429 shader_cso = 0;