/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/gles1/ |
D | ClipPlaneTest.cpp | 42 GLfloat clipPlane[4] = {}; in TEST_P() local 51 glGetClipPlanef(plane, clipPlane); in TEST_P() 54 EXPECT_EQ(0.0f, clipPlane[0]); in TEST_P() 55 EXPECT_EQ(0.0f, clipPlane[1]); in TEST_P() 56 EXPECT_EQ(0.0f, clipPlane[2]); in TEST_P() 57 EXPECT_EQ(0.0f, clipPlane[3]); in TEST_P() 95 GLfloat clipPlane[4] = { in TEST_P() local 102 glClipPlanef(plane, clipPlane); in TEST_P() 108 EXPECT_EQ(clipPlane[0], actualClipPlane[0]); in TEST_P() 109 EXPECT_EQ(clipPlane[1], actualClipPlane[1]); in TEST_P() [all …]
|
/third_party/flutter/skia/third_party/externals/angle2/src/tests/gl_tests/gles1/ |
D | ClipPlaneTest.cpp | 42 GLfloat clipPlane[4] = {}; in TEST_P() local 51 glGetClipPlanef(plane, clipPlane); in TEST_P() 54 EXPECT_EQ(0.0f, clipPlane[0]); in TEST_P() 55 EXPECT_EQ(0.0f, clipPlane[1]); in TEST_P() 56 EXPECT_EQ(0.0f, clipPlane[2]); in TEST_P() 57 EXPECT_EQ(0.0f, clipPlane[3]); in TEST_P() 95 GLfloat clipPlane[4] = { in TEST_P() local 102 glClipPlanef(plane, clipPlane); in TEST_P() 108 EXPECT_EQ(clipPlane[0], actualClipPlane[0]); in TEST_P() 109 EXPECT_EQ(clipPlane[1], actualClipPlane[1]); in TEST_P() [all …]
|
/third_party/skia/third_party/externals/swiftshader/src/Renderer/ |
D | Clipper.cpp | 67 if(clipFlags & CLIP_PLANE0) clipPlane(polygon, data.clipPlane[0]); in clip() 69 if(clipFlags & CLIP_PLANE1) clipPlane(polygon, data.clipPlane[1]); in clip() 71 if(clipFlags & CLIP_PLANE2) clipPlane(polygon, data.clipPlane[2]); in clip() 73 if(clipFlags & CLIP_PLANE3) clipPlane(polygon, data.clipPlane[3]); in clip() 75 if(clipFlags & CLIP_PLANE4) clipPlane(polygon, data.clipPlane[4]); in clip() 77 if(clipFlags & CLIP_PLANE5) clipPlane(polygon, data.clipPlane[5]); in clip() 312 void Clipper::clipPlane(Polygon &polygon, const Plane &p) in clipPlane() function in sw::Clipper
|
D | Renderer.cpp | 630 if(clipFlags & Clipper::CLIP_PLANE0) data->clipPlane[0] = clipPlane[0]; in draw() 631 if(clipFlags & Clipper::CLIP_PLANE1) data->clipPlane[1] = clipPlane[1]; in draw() 632 if(clipFlags & Clipper::CLIP_PLANE2) data->clipPlane[2] = clipPlane[2]; in draw() 633 if(clipFlags & Clipper::CLIP_PLANE3) data->clipPlane[3] = clipPlane[3]; in draw() 634 if(clipFlags & Clipper::CLIP_PLANE4) data->clipPlane[4] = clipPlane[4]; in draw() 635 if(clipFlags & Clipper::CLIP_PLANE5) data->clipPlane[5] = clipPlane[5]; in draw() 2331 if(clipFlags & Clipper::CLIP_PLANE0) clipPlane[0] = scissorWorld * userPlane[0]; in updateClipper() 2332 if(clipFlags & Clipper::CLIP_PLANE1) clipPlane[1] = scissorWorld * userPlane[1]; in updateClipper() 2333 if(clipFlags & Clipper::CLIP_PLANE2) clipPlane[2] = scissorWorld * userPlane[2]; in updateClipper() 2334 if(clipFlags & Clipper::CLIP_PLANE3) clipPlane[3] = scissorWorld * userPlane[3]; in updateClipper() [all …]
|
D | Clipper.hpp | 69 void clipPlane(Polygon &polygon, const Plane &plane);
|
D | Renderer.hpp | 190 Plane clipPlane[6]; member 407 Plane clipPlane[MAX_CLIP_PLANES]; // Tranformed to clip space member in sw::Renderer
|
/third_party/skia/src/gpu/ops/ |
D | GrOvalOpFactory.cpp | 69 static GrGeometryProcessor* Make(SkArenaAlloc* arena, bool stroke, bool clipPlane, in Make() argument 73 return new (ptr) CircleGeometryProcessor(stroke, clipPlane, isectPlane, unionPlane, in Make() 96 CircleGeometryProcessor(bool stroke, bool clipPlane, bool isectPlane, bool unionPlane, in CircleGeometryProcessor() argument 105 if (clipPlane) { in CircleGeometryProcessor() 116 SkASSERT(clipPlane); in CircleGeometryProcessor() 260 bool clipPlane = d->fRandom->nextBool(); in TestCreate() local 264 return CircleGeometryProcessor::Make(d->allocator(), stroke, clipPlane, isectPlane, in TestCreate()
|
/third_party/flutter/skia/src/gpu/ops/ |
D | GrOvalOpFactory.cpp | 66 CircleGeometryProcessor(bool stroke, bool clipPlane, bool isectPlane, bool unionPlane, in CircleGeometryProcessor() argument 75 if (clipPlane) { in CircleGeometryProcessor() 86 SkASSERT(clipPlane); in CircleGeometryProcessor() 250 bool clipPlane = d->fRandom->nextBool(); in TestCreate() local 255 stroke, clipPlane, isectPlane, unionPlane, roundCaps, wideColor, matrix)); in TestCreate()
|
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/ |
D | Context_gl_1_0_autogen.h | 23 void clipPlane(GLenum plane, const GLdouble *equation); \
|
D | Context_gl.cpp | 758 void Context::clipPlane(GLenum plane, const GLdouble *equation) in clipPlane() function in gl::Context
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
D | Context_gl_1_autogen.h | 23 void clipPlane(GLenum plane, const GLdouble *equation); \
|
D | Context_gl.cpp | 727 void Context::clipPlane(GLenum plane, const GLdouble *equation) in clipPlane() function in gl::Context
|
/third_party/flutter/skia/third_party/externals/angle2/src/libGL/ |
D | entry_points_gl_1_0_autogen.cpp | 287 context->clipPlane(plane, equation); in ClipPlane()
|
/third_party/skia/third_party/externals/angle2/src/libGL/ |
D | entry_points_gl_1_autogen.cpp | 359 context->clipPlane(plane, equation); in GL_ClipPlane()
|