OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:D2D1_POINT_2F
(Results
1 - 5
of
5
) sorted by null
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
d2d1helper.h
16
typedef
D2D1_POINT_2F
Point;
36
D2D1FORCEINLINE
D2D1_POINT_2F
Point2F(FLOAT x = 0.f, FLOAT y = 0.f) {
75
D2D1FORCEINLINE D2D1_ARC_SEGMENT ArcSegment(const
D2D1_POINT_2F
&point, const D2D1_SIZE_F &size, const FLOAT rotationAngle, D2D1_SWEEP_DIRECTION sweepDirection, D2D1_ARC_SIZE arcSize) {
80
D2D1FORCEINLINE D2D1_BEZIER_SEGMENT BezierSegment(const
D2D1_POINT_2F
&point1, const
D2D1_POINT_2F
&point2, const
D2D1_POINT_2F
&point3) {
85
D2D1FORCEINLINE D2D1_ELLIPSE Ellipse(const
D2D1_POINT_2F
¢er, FLOAT radiusX, FLOAT radiusY) {
107
D2D1FORCEINLINE D2D1_QUADRATIC_BEZIER_SEGMENT QuadraticBezierSegment(const
D2D1_POINT_2F
&point1, const
D2D1_POINT_2F
&point2) {
132
D2D1FORCEINLINE D2D1_LINEAR_GRADIENT_BRUSH_PROPERTIES LinearGradientBrushProperties(const
D2D1_POINT_2F
&startPoint, const D2D1_POINT_2F &endPoint)
[
all
...]
d2dbasetypes.h
64
typedef struct D2D_POINT_2F
D2D1_POINT_2F
;
d2d1.h
432
D2D1_POINT_2F
point;
440
D2D1_POINT_2F
point1;
441
D2D1_POINT_2F
point2;
442
D2D1_POINT_2F
point3;
476
D2D1_POINT_2F
point;
507
D2D1_POINT_2F
startPoint;
508
D2D1_POINT_2F
endPoint;
512
D2D1_POINT_2F
point1;
513
D2D1_POINT_2F
point2;
517
D2D1_POINT_2F
center
[
all
...]
/external/skia/src/utils/win/
SkDWriteGeometrySink.h
37
void STDMETHODCALLTYPE BeginFigure(
D2D1_POINT_2F
startPoint, D2D1_FIGURE_BEGIN figureBegin) override;
38
void STDMETHODCALLTYPE AddLines(const
D2D1_POINT_2F
*points, UINT pointsCount) override;
SkDWriteGeometrySink.cpp
68
void STDMETHODCALLTYPE SkDWriteGeometrySink::BeginFigure(
D2D1_POINT_2F
startPoint, D2D1_FIGURE_BEGIN figureBegin) {
75
void STDMETHODCALLTYPE SkDWriteGeometrySink::AddLines(const
D2D1_POINT_2F
*points, UINT pointsCount) {
76
for (const
D2D1_POINT_2F
*end = &points[pointsCount]; points < end; ++points) {
116
D2D1_POINT_2F
prevPt = { SkScalarToFloat(lastPt.fX), SkScalarToFloat(lastPt.fY) };
Completed in 208 milliseconds