Home
last modified time | relevance | path

Searched refs:isVertex (Results 1 – 25 of 115) sorted by relevance

12345

/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/third_party/VK-GL-CTS/src/modules/gles2/functional/
H A Des2fShaderReturnTests.cpp171 const char* coords = isVertex ? "a_coords" : "v_coords"; in makeConditionalReturnInFuncCase()
175 params["COORDSTORAGE"] = isVertex ? "attribute" : "varying"; in makeConditionalReturnInFuncCase()
176 params["COORDPREC"] = isVertex ? "highp" : "mediump"; in makeConditionalReturnInFuncCase()
177 params["OUTPUT"] = isVertex ? "v_color" : "gl_FragColor"; in makeConditionalReturnInFuncCase()
226 const char* coords = isVertex ? "a_coords" : "v_coords"; in makeOutputWriteReturnCase()
230 params["COORDATTRS"] = isVertex ? "attribute highp" : "varying mediump"; in makeOutputWriteReturnCase()
232 params["OUTPUT"] = isVertex ? "v_color" : "gl_FragColor"; in makeOutputWriteReturnCase()
271 const char* coords = isVertex ? "a_coords" : "v_coords"; in makeReturnInLoopCase()
275 params["COORDSTORAGE"] = isVertex ? "attribute" : "varying"; in makeReturnInLoopCase()
276 params["COORDPREC"] = isVertex ? "highp" : "mediump"; in makeReturnInLoopCase()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/third_party/VK-GL-CTS/src/modules/gles3/functional/
H A Des3fShaderReturnTests.cpp145 const char* coords = isVertex ? "a_coords" : "v_coords"; in makeConditionalReturnInFuncCase()
149 params["COORDPREC"] = isVertex ? "highp" : "mediump"; in makeConditionalReturnInFuncCase()
150 params["OUTPUT"] = isVertex ? "v_color" : "o_color"; in makeConditionalReturnInFuncCase()
153 params["POSITIONWRITE"] = isVertex ? " gl_Position = a_position;\n" : ""; in makeConditionalReturnInFuncCase()
201 const char* coords = isVertex ? "a_coords" : "v_coords"; in makeOutputWriteReturnCase()
205 params["COORDPREC"] = isVertex ? "highp" : "mediump"; in makeOutputWriteReturnCase()
207 params["OUTPUT"] = isVertex ? "v_color" : "o_color"; in makeOutputWriteReturnCase()
209 params["POSITIONWRITE"] = isVertex ? " gl_Position = a_position;\n" : ""; in makeOutputWriteReturnCase()
247 const char* coords = isVertex ? "a_coords" : "v_coords"; in makeReturnInLoopCase()
251 params["COORDPREC"] = isVertex ? "highp" : "mediump"; in makeReturnInLoopCase()
[all …]
H A Des3fShaderSwitchTests.cpp89 …ext& context, const char* name, const char* desc, SwitchType type, bool isVertex, const LineStream… in makeSwitchCase() argument
93 std::ostringstream& op = isVertex ? vtx : frag; in makeSwitchCase()
101 if (isVertex) in makeSwitchCase()
124 op << " highp vec4 coords = " << (isVertex ? "a_coords" : "v_coords") << ";\n"; in makeSwitchCase()
136 if (isVertex) in makeSwitchCase()
150 return new ShaderSwitchCase(context, name, desc, isVertex, vtx.str().c_str(), frag.str().c_str(), in makeSwitchCase()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/third_party/VK-GL-CTS/src/external/vulkancts/modules/vulkan/shaderrender/
H A DvktShaderRenderReturnTests.cpp156 const char* coords = isVertex ? "a_coords" : "v_coords"; in makeConditionalReturnInFuncCase()
160 params["COORDLOC"] = isVertex ? "1" : "0"; in makeConditionalReturnInFuncCase()
161 params["COORDPREC"] = isVertex ? "highp" : "mediump"; in makeConditionalReturnInFuncCase()
162 params["OUTPUT"] = isVertex ? "v_color" : "o_color"; in makeConditionalReturnInFuncCase()
211 const char* coords = isVertex ? "a_coords" : "v_coords"; in makeOutputWriteReturnCase()
215 params["COORDLOC"] = isVertex ? "1" : "0"; in makeOutputWriteReturnCase()
216 params["COORDPREC"] = isVertex ? "highp" : "mediump"; in makeOutputWriteReturnCase()
218 params["OUTPUT"] = isVertex ? "v_color" : "o_color"; in makeOutputWriteReturnCase()
261 params["COORDLOC"] = isVertex ? "1" : "0"; in makeReturnInLoopCase()
262 params["COORDPREC"] = isVertex ? "highp" : "mediump"; in makeReturnInLoopCase()
[all …]
H A DvktShaderRenderSwitchTests.cpp106 … testCtx, const string& name, const string& desc, SwitchType type, bool isVertex, const LineStream… in makeSwitchCase() argument
110 std::ostringstream& op = isVertex ? vtx : frag; in makeSwitchCase()
118 if (isVertex) in makeSwitchCase()
141 op << " highp vec4 coords = " << (isVertex ? "a_coords" : "v_coords") << ";\n"; in makeSwitchCase()
153 if (isVertex) in makeSwitchCase()
167 …return de::MovePtr<ShaderSwitchCase>(new ShaderSwitchCase(testCtx, name, desc, isVertex, vtx.str()… in makeSwitchCase()
/dports/math/jts/jts-jts-1.18.1/modules/app/src/main/java/org/locationtech/jtstest/testbuilder/geom/
H A DGeometryPointLocater.java31 if (geomLoc.isVertex()) return null; in locateNonVertexPoint()
47 private boolean isVertex = false; field in GeometryPointLocater
60 isVertex = filter.isVertex(); in getLocation()
68 filter.isVertex(), in getLocation()
74 public boolean isVertex() { return isVertex; } in isVertex() method in GeometryPointLocater
85 private boolean isVertex = false; field in GeometryPointLocater.NearestSegmentLocationFilter
131 isVertex = true; in checkSegment()
137 isVertex = true; in checkSegment()
150 isVertex = false; in checkSegment()
162 isVertex = true; in checkVertex()
[all …]
H A DGeometryLocation.java49 private boolean isVertex = true; field in GeometryLocation
71 public GeometryLocation(Geometry parent, Geometry component, int segmentIndex, boolean isVertex, in GeometryLocation() argument
77 this.isVertex = isVertex; in GeometryLocation()
81 …ation(Geometry parent, Geometry component, int[] componentPath, int segmentIndex, boolean isVertex, in GeometryLocation() argument
88 this.isVertex = isVertex; in GeometryLocation()
99 public boolean isVertex() { return isVertex; } in isVertex() method in GeometryLocation
113 if (isVertex()) return 0; in getLength()
148 if (! isVertex()) { in toFacetString()
154 buf.append(isVertex() ? in toFacetString()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/third_party/VK-GL-CTS/src/modules/gles2/performance/
H A Des2pShaderControlStatementTests.cpp755 : WorkloadReferenceCase (context, name, description, isVertex) in LoopWorkloadReferenceCase()
792 : WorkloadReferenceCase (context, name, description, isVertex) in ConditionalWorkloadReferenceCase()
823 …yWorkloadReferenceCase (Context& context, const char* name, const char* description, bool isVertex) in EmptyWorkloadReferenceCase() argument
824 : WorkloadReferenceCase (context, name, description, isVertex) in EmptyWorkloadReferenceCase()
853 bool isVertex = isFrag == 0; in init() local
862 decisionType == (int)DECISION_ATTRIBUTE ? (isVertex ? "attribute" : "varying") : in init()
890 (ConditionalCase::WorkloadDivision)workloadDivision, isVertex)); in init()
895 if (isVertex) in init()
928 bool isVertex = isFrag == 0; in init() local
937 decisionType == (int)DECISION_ATTRIBUTE ? (isVertex ? "attribute" : "varying") : in init()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/third_party/VK-GL-CTS/src/modules/gles3/performance/
H A Des3pShaderControlStatementTests.cpp767 : WorkloadReferenceCase (context, name, description, isVertex) in LoopWorkloadReferenceCase()
804 : WorkloadReferenceCase (context, name, description, isVertex) in ConditionalWorkloadReferenceCase()
835 …yWorkloadReferenceCase (Context& context, const char* name, const char* description, bool isVertex) in EmptyWorkloadReferenceCase() argument
836 : WorkloadReferenceCase (context, name, description, isVertex) in EmptyWorkloadReferenceCase()
865 bool isVertex = isFrag == 0; in init() local
874 decisionType == (int)DECISION_ATTRIBUTE ? (isVertex ? "attribute" : "varying") : in init()
902 (ConditionalCase::WorkloadDivision)workloadDivision, isVertex)); in init()
907 if (isVertex) in init()
940 bool isVertex = isFrag == 0; in init() local
949 decisionType == (int)DECISION_ATTRIBUTE ? (isVertex ? "attribute" : "varying") : in init()
[all …]
H A Des3pShaderCompilationCases.cpp2863 bool isVertex = isFrag == 0; in addShaderCompilationPerformanceCases() local
2864 const char* vertFragStr = isVertex ? "vertex" : "fragment"; in addShaderCompilationPerformanceCases()
2992 bool isVertex = isFrag == 0; in addShaderCompilationPerformanceCases() local
2993 const char* vertFragStr = isVertex ? "vertex" : "fragment"; in addShaderCompilationPerformanceCases()
3053 bool isVertex = isFrag == 0; in addShaderCompilationPerformanceCases() local
3054 const char* vertFragStr = isVertex ? "vertex" : "fragment"; in addShaderCompilationPerformanceCases()
3064 …context, caseName.c_str(), "", caseID++, true /* avoid cache */, false, isVertex, "*", numOpers)); in addShaderCompilationPerformanceCases()
3065 …context, caseName.c_str(), "", caseID++, false /* allow cache */, false, isVertex, "*", numOpers)); in addShaderCompilationPerformanceCases()
3133 bool isVertex = isFrag == 0; in addShaderCompilationPerformanceCases() local
3134 string vtxFragSuffix = isVertex ? "_vertex" : "_fragment"; in addShaderCompilationPerformanceCases()
[all …]
/dports/java/jgraph/jgraph-java-5.13.0.4/src/com/jgraph/layout/hierarchical/model/
H A DJGraphAbstractHierarchyCell.java94 public abstract boolean isVertex(); in isVertex() method in JGraphAbstractHierarchyCell
124 if (isVertex()) { in setX()
137 if (isVertex()) { in getX()
155 if (isVertex()) { in setY()
/dports/java/jgraphx/jgraphx-4.2.2/src/com/mxgraph/layout/hierarchical/model/
H A DmxGraphAbstractHierarchyCell.java88 public abstract boolean isVertex(); in isVertex() method in mxGraphAbstractHierarchyCell
119 if (isVertex()) in setX()
136 if (isVertex()) in getX()
158 if (isVertex()) in setY()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/third_party/VK-GL-CTS/src/external/openglcts/modules/common/
H A DglcShaderSwitchTests.cpp99 SwitchType type, bool isVertex, const LineStream& switchBody) in makeSwitchCase() argument
103 std::ostringstream& op = isVertex ? vtx : frag; in makeSwitchCase()
111 if (isVertex) in makeSwitchCase()
134 op << " highp vec4 coords = " << (isVertex ? "a_coords" : "v_coords") << ";\n"; in makeSwitchCase()
148 if (isVertex) in makeSwitchCase()
162 return new ShaderSwitchCase(context, name, desc, isVertex, vtx.str().c_str(), frag.str().c_str(), in makeSwitchCase()
/dports/math/dune-geometry/dune-geometry-e7bfb66e48496aa28e47974c33ea9a4579bf723b/dune/geometry/test/
H A Dtest-referenceelements.cc126 test(referenceLine.type(0,1).isVertex()); in main()
127 test(referenceLine.type(1,1).isVertex()); in main()
199 test(referenceTriangle.type(0,2).isVertex()); in main()
200 test(referenceTriangle.type(1,2).isVertex()); in main()
201 test(referenceTriangle.type(2,2).isVertex()); in main()
286 test(referenceQuad.type(0,2).isVertex()); in main()
287 test(referenceQuad.type(1,2).isVertex()); in main()
288 test(referenceQuad.type(2,2).isVertex()); in main()
289 test(referenceQuad.type(3,2).isVertex()); in main()
348 test(referenceTetra.type(i,3).isVertex()); in main()
[all …]
/dports/math/jts/jts-jts-1.18.1/modules/core/src/main/java/org/locationtech/jts/linearref/
H A DExtractLineByLocation.java98 if (! start.isVertex()) in computeLine()
103 if (! end.isVertex()) in computeLine()
134 if (! start.isVertex()) in computeLinear()
147 if (! end.isVertex()) in computeLinear()
/dports/graphics/geos/geos-3.9.1/src/linearref/
H A DExtractLineByLocation.cpp106 if(! start.isVertex()) { in computeLine()
114 if(! end.isVertex()) { in computeLine()
141 if(! start.isVertex()) { in computeLinear()
155 if(! end.isVertex()) { in computeLinear()
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/glsleditor/
H A Dglsleditor.cpp334 bool isVertex = false; in languageVariant() local
339 isVertex = true; in languageVariant()
343 isVertex = true; in languageVariant()
347 isVertex = true; in languageVariant()
353 isVertex = true; in languageVariant()
361 if (isVertex) in languageVariant()
/dports/java/jgraph/jgraph-java-5.13.0.4/src/com/jgraph/layout/
H A DJGraphFacade.java402 if (isVertex(roots[i])) in JGraphFacade()
483 public boolean isVertex(Object cell) { in isVertex() method in JGraphFacade
491 if (DefaultGraphModel.isVertex(model, cell)) { in isVertex()
786 if (DefaultGraphModel.isVertex(model, cell)) { in getUnconnectedVertices()
846 if (cell != null && !isVertex(cell)) { in getSource()
855 if (isVertex(cell)) { in getSource()
875 if (cell != null && !isVertex(cell)) { in getTarget()
884 if (isVertex(cell)) { in getTarget()
965 if (!edges && isVertex(cell)) { in getCells()
2306 if (isVertex(root)) {
[all …]
/dports/www/grafana8/grafana-8.3.6/vendor/gonum.org/v1/gonum/graph/formats/dot/ast/
H A Dast.go314 isVertex() methodSpec
408 func (*Node) isVertex() {} func
409 func (*Subgraph) isVertex() {} func
/dports/sysutils/kubectl/kubernetes-1.22.2/vendor/gonum.org/v1/gonum/graph/formats/dot/ast/
H A Dast.go314 isVertex() methodSpec
408 func (*Node) isVertex() {} func
409 func (*Subgraph) isVertex() {} func
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/openshift/api/vendor/gonum.org/v1/gonum/graph/formats/dot/ast/
H A Dast.go314 isVertex() methodSpec
408 func (*Node) isVertex() {} func
409 func (*Subgraph) isVertex() {} func
/dports/math/dune-foamgrid/dune-foamgrid-43bfdb6181fae187fd803eca935a030d8d5ab0bc/dune/foamgrid/foamgrid/
H A Dfoamgridindexsets.hh83 if (type.isVertex()) in size()
261 if (type.isVertex()) in size()
334 if(edIt->type().isVertex() && dimgrid==1) in update()
365 if(vIt->type().isVertex() && dimgrid==2) in update()
/dports/science/axom/axom-0.6.1/src/axom/mint/mesh/
H A DFieldData.cpp139 const bool isVertex = (strcmp(assoc, "vertex") == 0); in FieldData() local
143 SLIC_ERROR_IF(!isVertex && !isElement && !isFace && !isEdge, in FieldData()
148 if(isVertex) in FieldData()
/dports/java/jgraphx/jgraphx-4.2.2/examples/com/mxgraph/examples/swing/
H A DCustomCanvas.java42 if (getModel().isVertex(state.getCell()) in CustomCanvas()
51 else if (getModel().isVertex(state.getCell()) in CustomCanvas()
/dports/cad/opencascade/opencascade-7.6.0/src/BRepFill/
H A DBRepFill_SectionPlacement.cxx104 Standard_Boolean Bof, isVertex = Standard_False; in Perform() local
125 isVertex = Standard_True; in Perform()
274 if (isVertex) in Perform()

12345