blob: 7c3047ec407dfacfeec06ca0830d9f98e1fd596e (
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
/*
* Copyright 2014 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "SkVertState.h"
bool VertState::Triangles(VertState* state) {
int index = state->fCurrIndex;
if (index + 3 > state->fCount) {
return false;
}
state->f0 = index + 0;
state->f1 = index + 1;
state->f2 = index + 2;
state->fCurrIndex = index + 3;
return true;
}
bool VertState::TrianglesX(VertState* state) {
const uint16_t* indices = state->fIndices;
int index = state->fCurrIndex;
if (index + 3 > state->fCount) {
return false;
}
state->f0 = indices[index + 0];
state->f1 = indices[index + 1];
state->f2 = indices[index + 2];
state->fCurrIndex = index + 3;
return true;
}
bool VertState::TriangleStrip(VertState* state) {
int index = state->fCurrIndex;
if (index + 3 > state->fCount) {
return false;
}
state->f2 = index + 2;
if (index & 1) {
state->f0 = index + 1;
state->f1 = index + 0;
} else {
state->f0 = index + 0;
state->f1 = index + 1;
}
state->fCurrIndex = index + 1;
return true;
}
bool VertState::TriangleStripX(VertState* state) {
const uint16_t* indices = state->fIndices;
int index = state->fCurrIndex;
if (index + 3 > state->fCount) {
return false;
}
state->f2 = indices[index + 2];
if (index & 1) {
state->f0 = indices[index + 1];
state->f1 = indices[index + 0];
} else {
state->f0 = indices[index + 0];
state->f1 = indices[index + 1];
}
state->fCurrIndex = index + 1;
return true;
}
bool VertState::TriangleFan(VertState* state) {
int index = state->fCurrIndex;
if (index + 3 > state->fCount) {
return false;
}
state->f0 = 0;
state->f1 = index + 1;
state->f2 = index + 2;
state->fCurrIndex = index + 1;
return true;
}
bool VertState::TriangleFanX(VertState* state) {
const uint16_t* indices = state->fIndices;
int index = state->fCurrIndex;
if (index + 3 > state->fCount) {
return false;
}
state->f0 = indices[0];
state->f1 = indices[index + 1];
state->f2 = indices[index + 2];
state->fCurrIndex = index + 1;
return true;
}
VertState::Proc VertState::chooseProc(SkCanvas::VertexMode mode) {
switch (mode) {
case SkCanvas::kTriangles_VertexMode:
return fIndices ? TrianglesX : Triangles;
case SkCanvas::kTriangleStrip_VertexMode:
return fIndices ? TriangleStripX : TriangleStrip;
case SkCanvas::kTriangleFan_VertexMode:
return fIndices ? TriangleFanX : TriangleFan;
default:
return nullptr;
}
}
|