summaryrefslogtreecommitdiffstats
path: root/gfx/src/AAStroke.h
blob: be6d0e7e4cd6f8269f943c420e5152fd913b08ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

#ifndef MOZILLA_GFX_AA_STROKE_H
#define MOZILLA_GFX_AA_STROKE_H

#include <stddef.h>

namespace AAStroke {

enum class LineCap { Round, Square, Butt };
enum class LineJoin { Round, Miter, Bevel };
struct StrokeStyle {
  float width;
  LineCap cap;
  LineJoin join;
  float miter_limit;
};
struct Stroker;
struct OutputVertex {
  float x;
  float y;
  float coverage;
};
struct VertexBuffer {
  OutputVertex* data;
  size_t len;
};

extern "C" {
Stroker* aa_stroke_new(const StrokeStyle* style,
                       OutputVertex* output_ptr = nullptr,
                       size_t output_capacity = 0);
void aa_stroke_move_to(Stroker* s, float x, float y, bool closed);
void aa_stroke_line_to(Stroker* s, float x, float y, bool end);
void aa_stroke_curve_to(Stroker* s, float c1x, float c1y, float c2x, float c2y,
                        float x, float y, bool end);
void aa_stroke_close(Stroker* s);
VertexBuffer aa_stroke_finish(Stroker* s);
VertexBuffer aa_stroke_filled_circle(float cx, float cy, float radius,
                                     OutputVertex* output_ptr = nullptr,
                                     size_t output_capacity = 0);
void aa_stroke_vertex_buffer_release(VertexBuffer vb);
void aa_stroke_release(Stroker* s);
};

}  // namespace AAStroke

#endif  // MOZILLA_GFX_AA_STROKE_H