Searched refs:bary (Results 1 – 9 of 9) sorted by relevance
/external/python/cpython2/Lib/plat-mac/ |
D | FrameWork.py | 902 self.barx = self.bary = None 909 self.barx = self.bary = None 922 self.bary = NewControl(self.wid, rect, "", 1, vy, 0, 32767, 16, 0) 923 if not self.bary_enabled: self.bary.HiliteControl(255) 927 self.barx = self.bary = None 935 if self.bary and self.bary_enabled: 936 self.bary.ShowControl() # jvr 942 if self.bary: 943 self.bary.HideControl() # jvr 953 if self.bary: [all …]
|
/external/mesa3d/src/compiler/nir/ |
D | nir_builder.h | 522 nir_intrinsic_instr *bary = nir_intrinsic_instr_create(build->shader, op); in nir_load_barycentric() local 523 nir_ssa_dest_init(&bary->instr, &bary->dest, 2, 32, NULL); in nir_load_barycentric() 524 nir_intrinsic_set_interp_mode(bary, interp_mode); in nir_load_barycentric() 525 nir_builder_instr_insert(build, &bary->instr); in nir_load_barycentric() 526 return &bary->dest.ssa; in nir_load_barycentric()
|
/external/clang/test/Sema/ |
D | incomplete-decl.c | 16 struct foo bary[]; // expected-error {{array has incomplete element type 'struct foo'}} variable
|
/external/mesa3d/src/gallium/drivers/freedreno/ir3/ |
D | ir3_shader.h | 183 bool bary : 1; /* fetched varying (vs one loaded into reg) */ member 333 if (so->inputs[i].compmask && so->inputs[i].bary) in ir3_next_varying()
|
D | ir3_shader.c | 74 if (v->inputs[i].bary) in fixup_regfootprint() 396 so->inputs[i].bary); in ir3_shader_disasm() 417 so->inputs[i].bary); in ir3_shader_disasm()
|
D | ir3_compiler_nir.c | 2044 so->inputs[n].bary = false; in setup_input() 2057 so->inputs[n].bary = true; in setup_input() 2085 so->inputs[n].bary = true; in setup_input() 2104 if (so->inputs[n].bary || (ctx->so->type == SHADER_VERTEX)) { in setup_input() 2514 if ((so->type == SHADER_FRAGMENT) && so->inputs[i].bary) { in ir3_compile_shader_nir() 2522 if ((so->type == SHADER_FRAGMENT) && compmask && so->inputs[i].bary) { in ir3_compile_shader_nir()
|
D | disasm-a3xx.c | 717 OPC(2, OPC_BARY_F, bary.f),
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | brw_fs.cpp | 1023 unsigned bary; in brw_barycentric_mode() local 1027 bary = BRW_BARYCENTRIC_PERSPECTIVE_PIXEL; in brw_barycentric_mode() 1030 bary = BRW_BARYCENTRIC_PERSPECTIVE_CENTROID; in brw_barycentric_mode() 1034 bary = BRW_BARYCENTRIC_PERSPECTIVE_SAMPLE; in brw_barycentric_mode() 1041 bary += 3; in brw_barycentric_mode() 1043 return (enum brw_barycentric_mode) bary; in brw_barycentric_mode() 1050 centroid_to_pixel(enum brw_barycentric_mode bary) in centroid_to_pixel() argument 1052 assert(bary == BRW_BARYCENTRIC_PERSPECTIVE_CENTROID || in centroid_to_pixel() 1053 bary == BRW_BARYCENTRIC_NONPERSPECTIVE_CENTROID); in centroid_to_pixel() 1054 return (enum brw_barycentric_mode) ((unsigned) bary - 1); in centroid_to_pixel() [all …]
|
D | brw_fs_nir.cpp | 3341 enum brw_barycentric_mode bary = in nir_emit_fs_intrinsic() local 3344 dst_xy = this->delta_xy[bary]; in nir_emit_fs_intrinsic()
|