50c64ab259
Bug: skia:9984 Change-Id: Iaff520c6085303830f14bac4fe56830ba7360f64 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/275218 Reviewed-by: Brian Osman <brianosman@google.com> Commit-Queue: Mike Reed <reed@google.com>
178 lines
6.4 KiB
C++
178 lines
6.4 KiB
C++
/*
|
|
* Copyright 2017 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef SkVertices_DEFINED
|
|
#define SkVertices_DEFINED
|
|
|
|
#include "include/core/SkColor.h"
|
|
#include "include/core/SkData.h"
|
|
#include "include/core/SkPoint.h"
|
|
#include "include/core/SkRect.h"
|
|
#include "include/core/SkRefCnt.h"
|
|
|
|
/**
|
|
* An immutable set of vertex data that can be used with SkCanvas::drawVertices.
|
|
*/
|
|
class SK_API SkVertices : public SkNVRefCnt<SkVertices> {
|
|
struct Desc;
|
|
struct Sizes;
|
|
public:
|
|
// DEPRECATED -- remove when we've updated canvas virtuals to not mention bones
|
|
struct Bone { float values[6]; };
|
|
|
|
enum VertexMode {
|
|
kTriangles_VertexMode,
|
|
kTriangleStrip_VertexMode,
|
|
kTriangleFan_VertexMode,
|
|
|
|
kLast_VertexMode = kTriangleFan_VertexMode,
|
|
};
|
|
|
|
/**
|
|
* Create a vertices by copying the specified arrays. texs, colors may be nullptr,
|
|
* and indices is ignored if indexCount == 0.
|
|
*/
|
|
static sk_sp<SkVertices> MakeCopy(VertexMode mode, int vertexCount,
|
|
const SkPoint positions[],
|
|
const SkPoint texs[],
|
|
const SkColor colors[],
|
|
int indexCount,
|
|
const uint16_t indices[],
|
|
bool isVolatile = true);
|
|
|
|
static sk_sp<SkVertices> MakeCopy(VertexMode mode, int vertexCount,
|
|
const SkPoint positions[],
|
|
const SkPoint texs[],
|
|
const SkColor colors[],
|
|
bool isVolatile = true) {
|
|
return MakeCopy(mode,
|
|
vertexCount,
|
|
positions,
|
|
texs,
|
|
colors,
|
|
0,
|
|
nullptr,
|
|
isVolatile);
|
|
}
|
|
|
|
enum BuilderFlags {
|
|
kHasTexCoords_BuilderFlag = 1 << 0,
|
|
kHasColors_BuilderFlag = 1 << 1,
|
|
kIsNonVolatile_BuilderFlag = 1 << 2,
|
|
};
|
|
class Builder {
|
|
public:
|
|
Builder(VertexMode mode, int vertexCount, int indexCount, uint32_t flags);
|
|
Builder(VertexMode mode, int vertexCount, int indexCount, int perVertexDataCount,
|
|
bool isVolatile);
|
|
|
|
bool isValid() const { return fVertices != nullptr; }
|
|
|
|
// if the builder is invalid, these will return 0
|
|
int vertexCount() const;
|
|
int indexCount() const;
|
|
int perVertexDataCount() const;
|
|
bool isVolatile() const;
|
|
SkPoint* positions();
|
|
uint16_t* indices(); // returns null if there are no indices
|
|
|
|
// if we have texCoords or colors, this will always be null
|
|
float* perVertexData(); // return null if there is no perVertexData
|
|
|
|
// If we have per-vertex-data, these will always be null
|
|
SkPoint* texCoords(); // returns null if there are no texCoords
|
|
SkColor* colors(); // returns null if there are no colors
|
|
|
|
// Detach the built vertices object. After the first call, this will always return null.
|
|
sk_sp<SkVertices> detach();
|
|
|
|
private:
|
|
Builder(const Desc&);
|
|
|
|
void init(const Desc&);
|
|
|
|
// holds a partially complete object. only completed in detach()
|
|
sk_sp<SkVertices> fVertices;
|
|
// Extra storage for intermediate vertices in the case where the client specifies indexed
|
|
// triangle fans. These get converted to indexed triangles when the Builder is finalized.
|
|
std::unique_ptr<uint8_t[]> fIntermediateFanIndices;
|
|
|
|
friend class SkVertices;
|
|
};
|
|
|
|
uint32_t uniqueID() const { return fUniqueID; }
|
|
VertexMode mode() const { return fMode; }
|
|
const SkRect& bounds() const { return fBounds; }
|
|
|
|
bool hasPerVertexData() const { return SkToBool(this->perVertexData()); }
|
|
bool hasColors() const { return SkToBool(this->colors()); }
|
|
bool hasTexCoords() const { return SkToBool(this->texCoords()); }
|
|
bool hasIndices() const { return SkToBool(this->indices()); }
|
|
|
|
int vertexCount() const { return fVertexCount; }
|
|
int indexCount() const { return fIndexCount; }
|
|
int perVertexDataCount() const { return fPerVertexDataCount; }
|
|
|
|
const SkPoint* positions() const { return fPositions; }
|
|
const float* perVertexData() const { return fPerVertexData; }
|
|
const SkPoint* texCoords() const { return fTexs; }
|
|
const SkColor* colors() const { return fColors; }
|
|
const uint16_t* indices() const { return fIndices; }
|
|
|
|
bool isVolatile() const { return fIsVolatile; }
|
|
|
|
// returns approximate byte size of the vertices object
|
|
size_t approximateSize() const;
|
|
|
|
/**
|
|
* Recreate a vertices from a buffer previously created by calling encode().
|
|
* Returns null if the data is corrupt or the length is incorrect for the contents.
|
|
*/
|
|
static sk_sp<SkVertices> Decode(const void* buffer, size_t length);
|
|
|
|
/**
|
|
* Pack the vertices object into a byte buffer. This can be used to recreate the vertices
|
|
* by calling Decode() with the buffer.
|
|
*/
|
|
sk_sp<SkData> encode() const;
|
|
|
|
private:
|
|
SkVertices() {}
|
|
|
|
// these are needed since we've manually sized our allocation (see Builder::init)
|
|
friend class SkNVRefCnt<SkVertices>;
|
|
void operator delete(void* p);
|
|
|
|
static sk_sp<SkVertices> Alloc(int vCount, int iCount, uint32_t builderFlags,
|
|
size_t* arraySize);
|
|
|
|
Sizes getSizes() const;
|
|
|
|
// we store this first, to pair with the refcnt in our base-class, so we don't have an
|
|
// unnecessary pad between it and the (possibly 8-byte aligned) ptrs.
|
|
uint32_t fUniqueID;
|
|
|
|
// these point inside our allocation, so none of these can be "freed"
|
|
SkPoint* fPositions; // [vertexCount]
|
|
uint16_t* fIndices; // [indexCount] or null
|
|
float* fPerVertexData; // [perVertexDataCount * vertexCount] or null
|
|
SkPoint* fTexs; // [vertexCount] or null
|
|
SkColor* fColors; // [vertexCount] or null
|
|
|
|
SkRect fBounds; // computed to be the union of the fPositions[]
|
|
int fVertexCount;
|
|
int fIndexCount;
|
|
int fPerVertexDataCount;
|
|
|
|
bool fIsVolatile;
|
|
|
|
VertexMode fMode;
|
|
// below here is where the actual array data is stored.
|
|
};
|
|
|
|
#endif
|