Searched refs:so (Results 1 - 25 of 1501) sorted by relevance

1234567891011>>

/xsrc/external/mit/MesaLib.old/dist/src/egl/main/
H A D50_mesa.json4 "library_path" : "libEGL_mesa.so.0"
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/etnaviv/
H A Detnaviv_zsa.c9 * Software is furnished to do so, subject to the following conditions:
38 const struct pipe_depth_stencil_alpha_state *so)
46 cs->base = *so;
51 (!so->depth.enabled || so->depth.func == PIPE_FUNC_ALWAYS) &&
52 !so->depth.writemask;
62 if(so->stencil[i].writemask == 0)
64 so->stencil[i].fail_op = so->stencil[i].zfail_op = so
37 etna_zsa_state_create(struct pipe_context * pctx,const struct pipe_depth_stencil_alpha_state * so) argument
[all...]
H A Detnaviv_rasterizer.c9 * Software is furnished to do so, subject to the following conditions:
36 const struct pipe_rasterizer_state *so)
41 if (so->fill_front != so->fill_back)
48 cs->base = *so;
50 cs->PA_CONFIG = (so->flatshade ? VIVS_PA_CONFIG_SHADE_MODEL_FLAT : VIVS_PA_CONFIG_SHADE_MODEL_SMOOTH) |
51 translate_cull_face(so->cull_face, so->front_ccw) |
52 translate_polygon_mode(so->fill_front) |
53 COND(so
35 etna_rasterizer_state_create(struct pipe_context * pctx,const struct pipe_rasterizer_state * so) argument
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/freedreno/a4xx/
H A Dfd4_rasterizer.c9 * Software is furnished to do so, subject to the following conditions:
39 struct fd4_rasterizer_stateobj *so; local in function:fd4_rasterizer_state_create
42 so = CALLOC_STRUCT(fd4_rasterizer_stateobj);
43 if (!so)
46 so->base = *cso;
65 so->gras_cl_clip_cntl = 0x80000; /* ??? */
66 so->gras_su_point_minmax = A4XX_GRAS_SU_POINT_MINMAX_MIN(psize_min) |
68 so->gras_su_point_size = A4XX_GRAS_SU_POINT_SIZE(cso->point_size);
69 so->gras_su_poly_offset_scale =
71 so
[all...]
H A Dfd4_zsa.c9 * Software is furnished to do so, subject to the following conditions:
39 struct fd4_zsa_stateobj *so; local in function:fd4_zsa_state_create
41 so = CALLOC_STRUCT(fd4_zsa_stateobj);
42 if (!so)
45 so->base = *cso;
47 so->rb_depth_control |=
51 so->rb_depth_control |=
55 so->rb_depth_control |= A4XX_RB_DEPTH_CONTROL_Z_WRITE_ENABLE;
60 so->rb_stencil_control |=
67 so
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/freedreno/a4xx/
H A Dfd4_rasterizer.c9 * Software is furnished to do so, subject to the following conditions:
40 struct fd4_rasterizer_stateobj *so; local in function:fd4_rasterizer_state_create
43 so = CALLOC_STRUCT(fd4_rasterizer_stateobj);
44 if (!so)
47 so->base = *cso;
66 so->gras_cl_clip_cntl = 0x80000; /* ??? */
67 so->gras_su_point_minmax =
70 so->gras_su_point_size = A4XX_GRAS_SU_POINT_SIZE(cso->point_size);
71 so->gras_su_poly_offset_scale =
73 so
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/etnaviv/
H A Detnaviv_rasterizer.c9 * Software is furnished to do so, subject to the following conditions:
36 const struct pipe_rasterizer_state *so)
41 if (so->fill_front != so->fill_back)
48 cs->base = *so;
50 cs->PA_CONFIG = (so->flatshade ? VIVS_PA_CONFIG_SHADE_MODEL_FLAT : VIVS_PA_CONFIG_SHADE_MODEL_SMOOTH) |
51 translate_cull_face(so->cull_face, so->front_ccw) |
52 translate_polygon_mode(so->fill_front) |
53 COND(so
35 etna_rasterizer_state_create(struct pipe_context * pctx,const struct pipe_rasterizer_state * so) argument
[all...]
H A Detnaviv_zsa.c9 * Software is furnished to do so, subject to the following conditions:
39 const struct pipe_depth_stencil_alpha_state *so)
48 cs->base = *so;
50 cs->z_test_enabled = so->depth_enabled && so->depth_func != PIPE_FUNC_ALWAYS;
51 cs->z_write_enabled = so->depth_enabled && so->depth_writemask;
63 if(so->stencil[i].writemask == 0)
65 so->stencil[i].fail_op = so
38 etna_zsa_state_create(struct pipe_context * pctx,const struct pipe_depth_stencil_alpha_state * so) argument
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/freedreno/a3xx/
H A Dfd3_rasterizer.c9 * Software is furnished to do so, subject to the following conditions:
40 struct fd3_rasterizer_stateobj *so; local in function:fd3_rasterizer_state_create
43 so = CALLOC_STRUCT(fd3_rasterizer_stateobj);
44 if (!so)
47 so->base = *cso;
66 so->gras_cl_clip_cntl = A3XX_GRAS_CL_CLIP_CNTL_IJ_PERSP_CENTER /* ??? */ |
68 so->gras_su_point_minmax =
71 so->gras_su_point_size = A3XX_GRAS_SU_POINT_SIZE(cso->point_size);
72 so->gras_su_poly_offset_scale =
74 so
[all...]
H A Dfd3_zsa.c9 * Software is furnished to do so, subject to the following conditions:
40 struct fd3_zsa_stateobj *so; local in function:fd3_zsa_state_create
42 so = CALLOC_STRUCT(fd3_zsa_stateobj);
43 if (!so)
46 so->base = *cso;
48 so->rb_depth_control |=
52 so->rb_depth_control |=
57 so->rb_depth_control |= A3XX_RB_DEPTH_CONTROL_Z_WRITE_ENABLE;
62 so->rb_stencil_control |=
69 so
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/freedreno/a5xx/
H A Dfd5_rasterizer.c9 * Software is furnished to do so, subject to the following conditions:
40 struct fd5_rasterizer_stateobj *so; local in function:fd5_rasterizer_state_create
43 so = CALLOC_STRUCT(fd5_rasterizer_stateobj);
44 if (!so)
47 so->base = *cso;
58 so->gras_su_point_minmax =
61 so->gras_su_point_size = A5XX_GRAS_SU_POINT_SIZE(cso->point_size);
62 so->gras_su_poly_offset_scale =
64 so->gras_su_poly_offset_offset =
66 so
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/freedreno/a3xx/
H A Dfd3_rasterizer.c9 * Software is furnished to do so, subject to the following conditions:
39 struct fd3_rasterizer_stateobj *so; local in function:fd3_rasterizer_state_create
42 so = CALLOC_STRUCT(fd3_rasterizer_stateobj);
43 if (!so)
46 so->base = *cso;
65 so->gras_cl_clip_cntl =
67 so->gras_su_point_minmax = A3XX_GRAS_SU_POINT_MINMAX_MIN(psize_min) |
69 so->gras_su_point_size = A3XX_GRAS_SU_POINT_SIZE(cso->point_size);
70 so->gras_su_poly_offset_scale =
72 so
[all...]
H A Dfd3_zsa.c9 * Software is furnished to do so, subject to the following conditions:
39 struct fd3_zsa_stateobj *so; local in function:fd3_zsa_state_create
41 so = CALLOC_STRUCT(fd3_zsa_stateobj);
42 if (!so)
45 so->base = *cso;
47 so->rb_depth_control |=
51 so->rb_depth_control |=
55 so->rb_depth_control |= A3XX_RB_DEPTH_CONTROL_Z_WRITE_ENABLE;
60 so->rb_stencil_control |=
67 so
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/freedreno/a5xx/
H A Dfd5_rasterizer.c9 * Software is furnished to do so, subject to the following conditions:
39 struct fd5_rasterizer_stateobj *so; local in function:fd5_rasterizer_state_create
42 so = CALLOC_STRUCT(fd5_rasterizer_stateobj);
43 if (!so)
46 so->base = *cso;
57 so->gras_su_point_minmax = A5XX_GRAS_SU_POINT_MINMAX_MIN(psize_min) |
59 so->gras_su_point_size = A5XX_GRAS_SU_POINT_SIZE(cso->point_size);
60 so->gras_su_poly_offset_scale =
62 so->gras_su_poly_offset_offset =
64 so
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/freedreno/a6xx/
H A Dfd6_zsa.c10 * Software is furnished to do so, subject to the following conditions:
55 update_lrz_stencil(struct fd6_zsa_stateobj *so, enum pipe_compare_func func, argument
66 so->lrz.enable = false;
67 so->lrz.test = false;
72 so->lrz.write = false;
79 so->lrz.write = false;
84 so->lrz.enable = false;
85 so->lrz.test = false;
96 struct fd6_zsa_stateobj *so; local in function:fd6_zsa_state_create
98 so
234 struct fd6_zsa_stateobj *so = hwcso; local in function:fd6_zsa_state_delete
[all...]
/xsrc/external/mit/MesaLib/dist/src/egl/main/
H A D50_mesa.json4 "library_path" : "libEGL_@glvnd_vendor_name@.so.0"
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/freedreno/a6xx/
H A Dfd6_rasterizer.c10 * Software is furnished to do so, subject to the following conditions:
42 struct fd6_rasterizer_stateobj *so; local in function:fd6_rasterizer_state_create
45 so = CALLOC_STRUCT(fd6_rasterizer_stateobj);
46 if (!so)
49 so->base = *cso;
60 so->gras_su_point_minmax =
63 so->gras_su_point_size = A6XX_GRAS_SU_POINT_SIZE(cso->point_size);
64 so->gras_su_poly_offset_scale =
66 so->gras_su_poly_offset_offset =
68 so
143 struct fd6_rasterizer_stateobj *so = hwcso; local in function:fd6_rasterizer_state_delete
[all...]
H A Dfd6_zsa.c10 * Software is furnished to do so, subject to the following conditions:
42 struct fd6_zsa_stateobj *so; local in function:fd6_zsa_state_create
44 so = CALLOC_STRUCT(fd6_zsa_stateobj);
45 if (!so)
48 so->base = *cso;
53 so->gras_lrz_cntl = A6XX_GRAS_LRZ_CNTL_ENABLE;
54 so->rb_lrz_cntl = A6XX_RB_LRZ_CNTL_ENABLE;
59 so->gras_lrz_cntl = A6XX_GRAS_LRZ_CNTL_ENABLE | A6XX_GRAS_LRZ_CNTL_GREATER;
60 so->rb_lrz_cntl = A6XX_RB_LRZ_CNTL_ENABLE;
65 so
163 struct fd6_zsa_stateobj *so = hwcso; local in function:fd6_depth_stencil_alpha_state_delete
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/freedreno/a2xx/
H A Dfd2_rasterizer.c9 * Software is furnished to do so, subject to the following conditions:
41 struct fd2_rasterizer_stateobj *so; local in function:fd2_rasterizer_state_create
44 so = CALLOC_STRUCT(fd2_rasterizer_stateobj);
45 if (!so)
57 so->base = *cso;
59 so->pa_sc_line_stipple = cso->line_stipple_enable ?
63 so->pa_cl_clip_cntl = 0; // TODO
65 so->pa_su_vtx_cntl =
69 so->pa_su_point_size =
73 so
[all...]
H A Dfd2_zsa.c9 * Software is furnished to do so, subject to the following conditions:
40 struct fd2_zsa_stateobj *so; local in function:fd2_zsa_state_create
42 so = CALLOC_STRUCT(fd2_zsa_stateobj);
43 if (!so)
46 so->base = *cso;
48 so->rb_depthcontrol |=
52 so->rb_depthcontrol |= A2XX_RB_DEPTHCONTROL_Z_ENABLE |
55 so->rb_depthcontrol |= A2XX_RB_DEPTHCONTROL_Z_WRITE_ENABLE;
60 so->rb_depthcontrol |=
66 so
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/freedreno/a2xx/
H A Dfd2_rasterizer.c9 * Software is furnished to do so, subject to the following conditions:
39 struct fd2_rasterizer_stateobj *so; local in function:fd2_rasterizer_state_create
42 so = CALLOC_STRUCT(fd2_rasterizer_stateobj);
43 if (!so)
55 so->base = *cso;
57 so->pa_sc_line_stipple =
63 so->pa_cl_clip_cntl = 0; // TODO
65 so->pa_su_vtx_cntl =
70 so->pa_su_point_size = A2XX_PA_SU_POINT_SIZE_HEIGHT(cso->point_size / 2) |
73 so
[all...]
H A Dfd2_blend.c9 * Software is furnished to do so, subject to the following conditions:
61 struct fd2_blend_stateobj *so; local in function:fd2_blend_state_create
72 so = CALLOC_STRUCT(fd2_blend_stateobj);
73 if (!so)
76 so->base = *cso;
78 so->rb_colorcontrol = A2XX_RB_COLORCONTROL_ROP_CODE(rop);
80 so->rb_blendcontrol =
93 so->rb_blendcontrol |=
100 so->rb_colormask |= A2XX_RB_COLOR_MASK_WRITE_RED;
102 so
[all...]
H A Dfd2_zsa.c9 * Software is furnished to do so, subject to the following conditions:
39 struct fd2_zsa_stateobj *so; local in function:fd2_zsa_state_create
41 so = CALLOC_STRUCT(fd2_zsa_stateobj);
42 if (!so)
45 so->base = *cso;
47 so->rb_depthcontrol |=
51 so->rb_depthcontrol |=
55 so->rb_depthcontrol |= A2XX_RB_DEPTHCONTROL_Z_WRITE_ENABLE;
60 so->rb_depthcontrol |=
66 so
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/nouveau/nv30/
H A Dnv30_texture.c9 * Software is furnished to do so, subject to the following conditions:
132 struct nv30_sampler_state *so; local in function:nv30_sampler_state_create
135 so = MALLOC_STRUCT(nv30_sampler_state);
136 if (!so)
139 so->pipe = *cso;
140 so->fmt = 0;
141 so->wrap = (wrap_mode(cso->wrap_s) << NV30_3D_TEX_WRAP_S__SHIFT) |
144 so->en = 0;
145 so->wrap |= compare_mode(cso);
146 so
225 struct nv30_sampler_view *so; local in function:nv30_sampler_view_create
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/nouveau/nv30/
H A Dnv30_texture.c9 * Software is furnished to do so, subject to the following conditions:
132 struct nv30_sampler_state *so; local in function:nv30_sampler_state_create
135 so = MALLOC_STRUCT(nv30_sampler_state);
136 if (!so)
139 so->pipe = *cso;
140 so->fmt = 0;
141 so->wrap = (wrap_mode(cso->wrap_s) << NV30_3D_TEX_WRAP_S__SHIFT) |
144 so->en = 0;
145 so->wrap |= compare_mode(cso);
146 so
225 struct nv30_sampler_view *so; local in function:nv30_sampler_view_create
[all...]

Completed in 10 milliseconds

1234567891011>>