Home
last modified time | relevance | path

Searched refs:isPoint (Results 1 – 12 of 12) sorted by relevance

/third_party/flutter/skia/src/shaders/
DSkLights.cpp25 bool isPoint = buf.readBool(); in MakeFromBuffer() local
37 if (isPoint) { in MakeFromBuffer()
58 bool isPoint = Light::kPoint_LightType == light.type(); in flatten() local
60 buf.writeBool(isPoint); in flatten()
64 if (isPoint) { in flatten()
/third_party/vk-gl-cts/modules/glshared/
DglsScissorTests.cpp127 glu::ProgramSources genShaders(glu::GLSLVersion version, bool isPoint) in genShaders() argument
131 if (isPoint) in genShaders()
195 virtual bool isPoint (void) const = 0;
219 …ader (m_renderCtx, genShaders(glu::getContextTypeGLSLVersion(m_renderCtx.getType()), isPoint())); in iterate()
317 virtual bool isPoint (void) const;
340 bool ScissorPrimitiveCase::isPoint (void) const in isPoint() function in deqp::gls::Functional::__anon2624343a0111::ScissorPrimitiveCase
436 virtual bool isPoint (void) const;
461 bool ScissorClearCase::isPoint (void) const in isPoint() function in deqp::gls::Functional::__anon2624343a0111::ScissorClearCase
517 virtual bool isPoint (void) const;
553 bool FramebufferBlitCase::isPoint (void) const in isPoint() function in deqp::gls::Functional::__anon2624343a0111::FramebufferBlitCase
[all …]
/third_party/skia/src/gpu/geometry/
DGrShape.h84 bool isPoint() const { return this->type() == Type::kPoint; } in isPoint() function
130 SkPoint& point() { SkASSERT(this->isPoint()); return fPoint; } in point()
131 const SkPoint& point() const { SkASSERT(this->isPoint()); return fPoint; } in point()
DGrStyledShape.cpp74 SkASSERT((!original.fShape.isLine() && !original.fShape.isPoint()) || result.fShape.isEmpty()); in MakeFilled()
658 if ((!fShape.isPoint() && !fShape.isLine()) || fStyle.hasNonDashPathEffect() || in simplifyStroke()
669 if (fShape.isPoint()) { in simplifyStroke()
736 if (fShape.isPoint()) { in simplifyStroke()
DGrShape.cpp230 } else if (!this->isPoint()) { in simplifyPoint()
/third_party/skia/src/gpu/
DGrSWMaskHelper.cpp103 if (shape.isEmpty() || shape.isLine() || shape.isPoint()) { in drawShape()
109 } else if (shape.isEmpty() || shape.isLine() || shape.isPoint()) { in drawShape()
/third_party/skia/third_party/externals/swiftshader/src/Device/
DVertexProcessor.hpp83 bool isPoint : 1; member
DVertexProcessor.cpp75 state.isPoint = pipelineState.getTopology() == VK_PRIMITIVE_TOPOLOGY_POINT_LIST; in update()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DDependenceAnalysis.cpp415 else if (isPoint()) in dump()
441 assert(!Y->isPoint() && "Y must not be a Point"); in intersectConstraints()
479 assert(!(X->isPoint() && Y->isPoint()) && in intersectConstraints()
565 assert(!(X->isLine() && Y->isPoint()) && "This case should never occur"); in intersectConstraints()
567 if (X->isPoint() && Y->isLine()) { in intersectConstraints()
3076 else if (Constraints[LI].isPoint()) in propagate()
3232 else if (CurConstraint.isPoint()) { in updateDirection()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DDependenceAnalysis.h397 bool isPoint() const { return Kind == Point; } in isPoint() function
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/
DVertexRoutine.cpp74 for(int i = 0; i < (state.isPoint ? 3 : 1); i++) in generate()
/third_party/skia/src/gpu/v1/
DClipStack.cpp529 SkASSERT(!fShape.isPoint() && !fShape.isLine()); in simplify()