/third_party/skia/third_party/externals/swiftshader/src/Shader/ |
D | VertexShader.cpp | 35 input[i] = Semantic(); in VertexShader() 72 input[i] = Semantic(); in VertexShader() 160 void VertexShader::setInput(int inputIdx, const sw::Shader::Semantic& semantic, AttribType aType) in setInput() 166 void VertexShader::setOutput(int outputIdx, int nbComponents, const sw::Shader::Semantic& semantic) in setOutput() 176 setOutput(posReg, 4, sw::Shader::Semantic(sw::Shader::USAGE_POSITION, 0)); in setPositionRegister() 182 setOutput(ptSizeReg, 4, sw::Shader::Semantic(sw::Shader::USAGE_PSIZE, 0)); in setPointSizeRegister() 186 const sw::Shader::Semantic& VertexShader::getInput(int inputIdx) const in getInput() 196 const sw::Shader::Semantic& VertexShader::getOutput(int outputIdx, int component) const in getOutput() 223 input[index] = Semantic(instruction[i]->usage, instruction[i]->usageIndex); in analyzeInput() 232 output[Pos][0] = Semantic(Shader::USAGE_POSITION, 0); in analyzeOutput() [all …]
|
D | VertexShader.hpp | 43 void setInput(int inputIdx, const Semantic& semantic, AttribType attribType = ATTRIBTYPE_FLOAT); 44 void setOutput(int outputIdx, int nbComponents, const Semantic& semantic); 50 const Semantic& getInput(int inputIdx) const; 51 const Semantic& getOutput(int outputIdx, int component) const; 64 Semantic input[MAX_VERTEX_INPUTS]; 65 Semantic output[MAX_VERTEX_OUTPUTS][4];
|
D | PixelShader.cpp | 141 void PixelShader::setInput(int inputIdx, int nbComponents, const sw::Shader::Semantic& semantic) in setInput() 149 const sw::Shader::Semantic& PixelShader::getInput(int inputIdx, int component) const in getInput() 205 input[0][0] = Semantic(Shader::USAGE_COLOR, 0); in analyzeInterpolants() 206 input[0][1] = Semantic(Shader::USAGE_COLOR, 0); in analyzeInterpolants() 207 input[0][2] = Semantic(Shader::USAGE_COLOR, 0); in analyzeInterpolants() 208 input[0][3] = Semantic(Shader::USAGE_COLOR, 0); in analyzeInterpolants() 210 input[1][0] = Semantic(Shader::USAGE_COLOR, 1); in analyzeInterpolants() 211 input[1][1] = Semantic(Shader::USAGE_COLOR, 1); in analyzeInterpolants() 212 input[1][2] = Semantic(Shader::USAGE_COLOR, 1); in analyzeInterpolants() 213 input[1][3] = Semantic(Shader::USAGE_COLOR, 1); in analyzeInterpolants() [all …]
|
D | PixelShader.hpp | 39 void setInput(int inputIdx, int nbComponents, const Semantic& semantic); 40 const Semantic& getInput(int inputIdx, int component) const; 53 Semantic input[MAX_FRAGMENT_INPUTS][4];
|
/third_party/mesa3d/src/gallium/auxiliary/tgsi/ |
D | tgsi_two_side.c | 78 if (decl->Semantic.Name == TGSI_SEMANTIC_COLOR) { in xform_decl() 80 assert(decl->Semantic.Index < 2); in xform_decl() 81 ts->front_color_input[decl->Semantic.Index] = decl->Range.First; in xform_decl() 82 ts->front_color_interp[decl->Semantic.Index] = decl->Interp.Interpolate; in xform_decl() 84 else if (decl->Semantic.Name == TGSI_SEMANTIC_FACE) { in xform_decl() 112 decl.Declaration.Semantic = 1; in emit_prolog() 113 decl.Semantic.Name = TGSI_SEMANTIC_BCOLOR; in emit_prolog() 114 decl.Semantic.Index = i; in emit_prolog() 137 decl.Declaration.Semantic = 1; in emit_prolog() 138 decl.Semantic.Name = TGSI_SEMANTIC_FACE; in emit_prolog() [all …]
|
D | tgsi_dump.c | 303 boolean patch = decl->Semantic.Name == TGSI_SEMANTIC_PATCH || in iter_declaration() 304 decl->Semantic.Name == TGSI_SEMANTIC_TESSINNER || in iter_declaration() 305 decl->Semantic.Name == TGSI_SEMANTIC_TESSOUTER || in iter_declaration() 306 decl->Semantic.Name == TGSI_SEMANTIC_PRIMID; in iter_declaration() 357 if (decl->Declaration.Semantic) { in iter_declaration() 359 ENM( decl->Semantic.Name, tgsi_semantic_names ); in iter_declaration() 360 if (decl->Semantic.Index != 0 || in iter_declaration() 361 decl->Semantic.Name == TGSI_SEMANTIC_TEXCOORD || in iter_declaration() 362 decl->Semantic.Name == TGSI_SEMANTIC_GENERIC) { in iter_declaration() 364 UID( decl->Semantic.Index ); in iter_declaration() [all …]
|
D | tgsi_point_sprite.c | 121 if (decl->Semantic.Name == TGSI_SEMANTIC_PSIZE) { in psprite_decl() 124 else if (decl->Semantic.Name == TGSI_SEMANTIC_POSITION) { in psprite_decl() 129 if (decl->Semantic.Name == TGSI_SEMANTIC_PSIZE) { in psprite_decl() 132 else if (decl->Semantic.Name == TGSI_SEMANTIC_POSITION) { in psprite_decl() 136 decl->Semantic.Name == TGSI_SEMANTIC_GENERIC && in psprite_decl() 137 decl->Semantic.Index < 32) { in psprite_decl() 138 ts->point_coord_decl |= 1 << decl->Semantic.Index; in psprite_decl() 139 ts->max_generic = MAX2(ts->max_generic, (int)decl->Semantic.Index); in psprite_decl() 142 decl->Semantic.Name == TGSI_SEMANTIC_TEXCOORD) { in psprite_decl() 143 ts->point_coord_decl |= 1 << decl->Semantic.Index; in psprite_decl()
|
/third_party/skia/third_party/externals/tint/src/sem/ |
D | loop_statement.cc | 29 TINT_ASSERT(Semantic, parent); in LoopStatement() 30 TINT_ASSERT(Semantic, function); in LoopStatement() 40 TINT_ASSERT(Semantic, parent); in LoopContinuingBlockStatement() 41 TINT_ASSERT(Semantic, function); in LoopContinuingBlockStatement()
|
D | switch_statement.cc | 29 TINT_ASSERT(Semantic, parent); in SwitchStatement() 30 TINT_ASSERT(Semantic, function); in SwitchStatement() 43 TINT_ASSERT(Semantic, parent); in CaseStatement() 44 TINT_ASSERT(Semantic, function); in CaseStatement()
|
D | constant.cc | 32 TINT_ICE(Semantic, diag) in ElemType() 40 TINT_ICE(Semantic, diag) in ElemType() 44 TINT_ASSERT(Semantic, vec->type()->is_scalar()); in ElemType() 47 TINT_UNREACHABLE(Semantic, diag) << "Unsupported sem::Constant type"; in ElemType()
|
D | block_statement.cc | 45 TINT_ASSERT(Semantic, function); in FunctionBlockStatement() 54 TINT_ASSERT(Semantic, parent); in LoopBlockStatement() 55 TINT_ASSERT(Semantic, function); in LoopBlockStatement()
|
D | pointer_type.cc | 29 TINT_ASSERT(Semantic, !subtype->Is<Reference>()); in Pointer() 30 TINT_ASSERT(Semantic, access != ast::Access::kUndefined); in Pointer()
|
D | reference_type.cc | 28 TINT_ASSERT(Semantic, !subtype->Is<Reference>()); in Reference() 29 TINT_ASSERT(Semantic, access != ast::Access::kUndefined); in Reference()
|
/third_party/mesa3d/src/gallium/drivers/r300/ |
D | r300_vs_draw.c | 98 decl.Declaration.Semantic = TRUE; in emit_output() 99 decl.Semantic.Name = name; in emit_output() 100 decl.Semantic.Index = index; in emit_output() 152 switch (decl->Semantic.Name) { in transform_decl() 158 assert(decl->Semantic.Index < 2); in transform_decl() 163 if (decl->Semantic.Index == 1 && !vsctx->color_used[0]) { in transform_decl() 171 assert(decl->Semantic.Index < 2); in transform_decl() 186 if (decl->Semantic.Index == 1 && !vsctx->bcolor_used[0]) { in transform_decl() 194 vsctx->last_generic = MAX2(vsctx->last_generic, decl->Semantic.Index); in transform_decl() 215 decl->Semantic.Name == TGSI_SEMANTIC_BCOLOR && in transform_decl()
|
/third_party/skia/third_party/externals/tint/docs/ |
D | compound_statements.md | 20 Semantic tree: 50 Semantic tree: 75 Semantic tree: 104 Semantic tree:
|
/third_party/typescript/tests/baselines/reference/tsc/incremental/ |
D | with-noEmitOnError-syntax-errors.js | 63 Semantic diagnostics in builder refreshed for:: 177 Semantic diagnostics in builder refreshed for:: 206 Semantic diagnostics in builder refreshed for:: 307 Semantic diagnostics in builder refreshed for::
|
D | with-noEmitOnError-semantic-errors.js | 61 Semantic diagnostics in builder refreshed for:: 187 Semantic diagnostics in builder refreshed for:: 214 Semantic diagnostics in builder refreshed for:: 313 Semantic diagnostics in builder refreshed for::
|
/third_party/typescript/tests/baselines/reference/tsbuildWatch/programUpdates/ |
D | when-referenced-project-change-introduces-error-in-the-down-stream-project-and-then-fixes-it.js | 56 Semantic diagnostics in builder refreshed for:: 72 Semantic diagnostics in builder refreshed for:: 209 Semantic diagnostics in builder refreshed for:: 223 Semantic diagnostics in builder refreshed for:: 341 Semantic diagnostics in builder refreshed for:: 355 Semantic diagnostics in builder refreshed for::
|
D | works-with-extended-source-files.js | 66 Semantic diagnostics in builder refreshed for:: 83 Semantic diagnostics in builder refreshed for:: 244 Semantic diagnostics in builder refreshed for:: 349 Semantic diagnostics in builder refreshed for:: 447 Semantic diagnostics in builder refreshed for:: 546 Semantic diagnostics in builder refreshed for:: 612 Semantic diagnostics in builder refreshed for:: 716 Semantic diagnostics in builder refreshed for::
|
/third_party/typescript/tests/baselines/reference/tsbuildWatch/programUpdates/with-circular-project-reference/ |
D | builds-when-new-file-is-added,-and-its-subsequent-updates.js | 96 Semantic diagnostics in builder refreshed for:: 115 Semantic diagnostics in builder refreshed for:: 137 Semantic diagnostics in builder refreshed for:: 461 Semantic diagnostics in builder refreshed for:: 574 Semantic diagnostics in builder refreshed for:: 588 Semantic diagnostics in builder refreshed for:: 646 Semantic diagnostics in builder refreshed for:: 767 Semantic diagnostics in builder refreshed for:: 781 Semantic diagnostics in builder refreshed for::
|
/third_party/typescript/tests/baselines/reference/tscWatch/watchApi/ |
D | noEmit-with-composite-with-emit-builder.js | 42 Semantic diagnostics in builder refreshed for:: 145 Semantic diagnostics in builder refreshed for:: 259 Semantic diagnostics in builder refreshed for:: 351 Semantic diagnostics in builder refreshed for:: 452 Semantic diagnostics in builder refreshed for::
|
/third_party/typescript/tests/baselines/reference/tscWatch/programUpdates/ |
D | extended-source-files-are-watched.js | 48 Semantic diagnostics in builder refreshed for:: 108 Semantic diagnostics in builder refreshed for:: 171 Semantic diagnostics in builder refreshed for:: 232 Semantic diagnostics in builder refreshed for:: 285 Semantic diagnostics in builder refreshed for::
|
/third_party/typescript/tests/baselines/reference/tsbuildWatch/watchEnvironment/ |
D | same-file-in-multiple-projects-with-single-watcher-per-file.js | 86 Semantic diagnostics in builder refreshed for:: 104 Semantic diagnostics in builder refreshed for:: 122 Semantic diagnostics in builder refreshed for:: 140 Semantic diagnostics in builder refreshed for:: 262 Semantic diagnostics in builder refreshed for:: 276 Semantic diagnostics in builder refreshed for:: 290 Semantic diagnostics in builder refreshed for:: 304 Semantic diagnostics in builder refreshed for:: 438 Semantic diagnostics in builder refreshed for:: 452 Semantic diagnostics in builder refreshed for:: [all …]
|
/third_party/typescript/tests/baselines/reference/tsbuild/noEmit/ |
D | semantic-errors.js | 50 Semantic diagnostics in builder refreshed for:: 90 Semantic diagnostics in builder refreshed for:: 125 Semantic diagnostics in builder refreshed for:: 157 Semantic diagnostics in builder refreshed for::
|
/third_party/typescript/tests/baselines/reference/tsbuildWatch/programUpdates/with-simple-project-reference-graph/ |
D | builds-when-new-file-is-added,-and-its-subsequent-updates.js | 122 Semantic diagnostics in builder refreshed for:: 141 Semantic diagnostics in builder refreshed for:: 163 Semantic diagnostics in builder refreshed for:: 495 Semantic diagnostics in builder refreshed for:: 613 Semantic diagnostics in builder refreshed for:: 627 Semantic diagnostics in builder refreshed for:: 685 Semantic diagnostics in builder refreshed for:: 811 Semantic diagnostics in builder refreshed for:: 825 Semantic diagnostics in builder refreshed for::
|