Home
last modified time | relevance | path

Searched refs:Semantic (Results 1 – 25 of 374) sorted by relevance

12345678910>>...15

/third_party/skia/third_party/externals/swiftshader/src/Shader/
DVertexShader.cpp35 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 …]
DVertexShader.hpp43 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];
DPixelShader.cpp141 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 …]
DPixelShader.hpp39 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/
Dtgsi_two_side.c78 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 …]
Dtgsi_dump.c303 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 …]
/third_party/skia/third_party/externals/tint/src/sem/
Dloop_statement.cc29 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()
Dswitch_statement.cc29 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()
Dconstant.cc32 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()
Dblock_statement.cc45 TINT_ASSERT(Semantic, function); in FunctionBlockStatement()
54 TINT_ASSERT(Semantic, parent); in LoopBlockStatement()
55 TINT_ASSERT(Semantic, function); in LoopBlockStatement()
/third_party/mesa3d/src/gallium/drivers/r300/
Dr300_vs_draw.c98 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/
Dcompound_statements.md20 Semantic tree:
50 Semantic tree:
75 Semantic tree:
104 Semantic tree:
/third_party/mesa3d/src/mesa/state_tracker/
Dst_tgsi_lower_depth_clamp.c60 decl->Semantic.Name == TGSI_SEMANTIC_GENERIC) in transform_decl()
61 ctx->next_generic = MAX2(ctx->next_generic, decl->Semantic.Index + 1); in transform_decl()
64 decl->Semantic.Name == TGSI_SEMANTIC_GENERIC) in transform_decl()
65 ctx->next_generic = MAX2(ctx->next_generic, decl->Semantic.Index + 1); in transform_decl()
69 decl->Semantic.Name == TGSI_SEMANTIC_POSITION) { in transform_decl()
70 assert(decl->Semantic.Index == 0); in transform_decl()
73 decl->Semantic.Name == TGSI_SEMANTIC_POSITION) { in transform_decl()
74 assert(decl->Semantic.Index == 0); in transform_decl()
/third_party/typescript/tests/baselines/reference/tsbuild/watchMode/programUpdates/
Dwhen-referenced-project-change-introduces-error-in-the-down-stream-project-and-then-fixes-it.js56 Semantic diagnostics in builder refreshed for::
68 Semantic diagnostics in builder refreshed for::
194 Semantic diagnostics in builder refreshed for::
205 Semantic diagnostics in builder refreshed for::
313 Semantic diagnostics in builder refreshed for::
324 Semantic diagnostics in builder refreshed for::
/third_party/typescript/tests/baselines/reference/tsc/incremental/initial-build/
Dwith-noEmitOnError-semantic-errors.js61 Semantic diagnostics in builder refreshed for::
168 Semantic diagnostics in builder refreshed for::
193 Semantic diagnostics in builder refreshed for::
280 Semantic diagnostics in builder refreshed for::
Dwith-noEmitOnError-syntax-errors.js68 Semantic diagnostics in builder refreshed for::
168 Semantic diagnostics in builder refreshed for::
195 Semantic diagnostics in builder refreshed for::
284 Semantic diagnostics in builder refreshed for::
/third_party/typescript/tests/baselines/reference/tscWatch/emitAndErrorUpdates/default/
Dwith-noEmitOnError.js70 Semantic diagnostics in builder refreshed for::
131 Semantic diagnostics in builder refreshed for::
183 Semantic diagnostics in builder refreshed for::
228 Change:: Semantic Error
258 Semantic diagnostics in builder refreshed for::
311 Semantic diagnostics in builder refreshed for::
336 Change:: Fix Semantic Error
361 Semantic diagnostics in builder refreshed for::
415 Semantic diagnostics in builder refreshed for::
Dwith-noEmitOnError-with-incremental.js70 Semantic diagnostics in builder refreshed for::
193 Semantic diagnostics in builder refreshed for::
245 Semantic diagnostics in builder refreshed for::
338 Change:: Semantic Error
368 Semantic diagnostics in builder refreshed for::
487 Semantic diagnostics in builder refreshed for::
512 Change:: Fix Semantic Error
537 Semantic diagnostics in builder refreshed for::
639 Semantic diagnostics in builder refreshed for::
/third_party/typescript/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependencies/
Dwith-noEmitOnError-with-incremental.js64 Semantic diagnostics in builder refreshed for::
188 Semantic diagnostics in builder refreshed for::
240 Semantic diagnostics in builder refreshed for::
334 Change:: Semantic Error
364 Semantic diagnostics in builder refreshed for::
484 Semantic diagnostics in builder refreshed for::
509 Change:: Fix Semantic Error
534 Semantic diagnostics in builder refreshed for::
637 Semantic diagnostics in builder refreshed for::
Dwith-noEmitOnError.js64 Semantic diagnostics in builder refreshed for::
125 Semantic diagnostics in builder refreshed for::
177 Semantic diagnostics in builder refreshed for::
222 Change:: Semantic Error
252 Semantic diagnostics in builder refreshed for::
305 Semantic diagnostics in builder refreshed for::
330 Change:: Fix Semantic Error
355 Semantic diagnostics in builder refreshed for::
409 Semantic diagnostics in builder refreshed for::
/third_party/typescript/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModules/
Dwith-noEmitOnError-with-incremental.js64 Semantic diagnostics in builder refreshed for::
188 Semantic diagnostics in builder refreshed for::
240 Semantic diagnostics in builder refreshed for::
334 Change:: Semantic Error
364 Semantic diagnostics in builder refreshed for::
484 Semantic diagnostics in builder refreshed for::
509 Change:: Fix Semantic Error
534 Semantic diagnostics in builder refreshed for::
637 Semantic diagnostics in builder refreshed for::
Dwith-noEmitOnError.js64 Semantic diagnostics in builder refreshed for::
125 Semantic diagnostics in builder refreshed for::
177 Semantic diagnostics in builder refreshed for::
222 Change:: Semantic Error
252 Semantic diagnostics in builder refreshed for::
305 Semantic diagnostics in builder refreshed for::
330 Change:: Fix Semantic Error
355 Semantic diagnostics in builder refreshed for::
409 Semantic diagnostics in builder refreshed for::
/third_party/typescript/tests/baselines/reference/tscWatch/emitAndErrorUpdates/defaultAndD/
Dwith-noEmitOnError-with-incremental.js64 Semantic diagnostics in builder refreshed for::
188 Semantic diagnostics in builder refreshed for::
240 Semantic diagnostics in builder refreshed for::
348 Change:: Semantic Error
378 Semantic diagnostics in builder refreshed for::
498 Semantic diagnostics in builder refreshed for::
523 Change:: Fix Semantic Error
548 Semantic diagnostics in builder refreshed for::
652 Semantic diagnostics in builder refreshed for::
/third_party/typescript/tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/
Dwith-noEmitOnError-with-incremental.js64 Semantic diagnostics in builder refreshed for::
189 Semantic diagnostics in builder refreshed for::
241 Semantic diagnostics in builder refreshed for::
350 Change:: Semantic Error
380 Semantic diagnostics in builder refreshed for::
501 Semantic diagnostics in builder refreshed for::
526 Change:: Fix Semantic Error
551 Semantic diagnostics in builder refreshed for::
656 Semantic diagnostics in builder refreshed for::
/third_party/typescript/tests/baselines/reference/tscWatch/emitAndErrorUpdates/isolatedModulesAndD/
Dwith-noEmitOnError-with-incremental.js64 Semantic diagnostics in builder refreshed for::
189 Semantic diagnostics in builder refreshed for::
241 Semantic diagnostics in builder refreshed for::
350 Change:: Semantic Error
380 Semantic diagnostics in builder refreshed for::
501 Semantic diagnostics in builder refreshed for::
526 Change:: Fix Semantic Error
551 Semantic diagnostics in builder refreshed for::
656 Semantic diagnostics in builder refreshed for::

12345678910>>...15