HomeSort by relevance Sort by last modified time
    Searched refs:hasColors (Results 1 - 16 of 16) sorted by null

  /external/skia/src/gpu/ops/
GrDrawAtlasOp.cpp 19 sizeof(SkPoint) + sizeof(SkPoint) + (this->hasColors() ? sizeof(GrColor) : 0);
32 static sk_sp<GrGeometryProcessor> make_gp(bool hasColors,
37 if (hasColors) {
47 sk_sp<GrGeometryProcessor> gp(make_gp(this->hasColors(), this->color(), this->viewMatrix()));
52 sizeof(SkPoint) + sizeof(SkPoint) + (this->hasColors() ? sizeof(GrColor) : 0));
167 if (this->hasColors() != that->hasColors()) {
171 if (!this->hasColors() && this->color() != that->color()) {
215 bool hasColors) {
219 if (hasColors) {
    [all...]
GrDrawAtlasOp.h 44 if (this->hasColors()) {
58 bool hasColors() const { return fHasColors; }
GrDrawVerticesOp.cpp 341 SkTArray<uint32_t>* colors, bool hasColors,
348 if (hasColors) {
370 bool hasColors = random->nextBool();
377 &positions, &texCoords, hasTexCoords, &colors, hasColors, &indices,
382 random, &positions, &texCoords, hasTexCoords, &colors, hasColors, &indices,
GrDrawVerticesOp.h 100 return fVertices->hasColors() && !(kIgnoreColors_VerticesFlag & fFlags);
  /external/skia/src/core/
SkVertices.cpp 24 Sizes(int vertexCount, int indexCount, bool hasTexs, bool hasColors) {
27 int64_t cSize = hasColors ? (int64_t)vertexCount * sizeof(SkColor) : 0;
56 bool hasColors = SkToBool(builderFlags & SkVertices::kHasColors_BuilderFlag);
58 SkVertices::Sizes(vertexCount, indexCount, hasTexs, hasColors));
144 Sizes sizes(fVertexCnt, fIndexCnt, this->hasTexCoords(), this->hasColors());
166 if (this->hasColors()) {
170 Sizes sizes(fVertexCnt, fIndexCnt, this->hasTexCoords(), this->hasColors());
201 const bool hasColors = SkToBool(packed & kHasColors_Mask);
202 Sizes sizes(vertexCount, indexCount, hasTexs, hasColors);
SkColorSpaceXformCanvas.cpp 93 if (vertices->hasColors()) {
  /external/clang/tools/diagtool/
TreeView.cpp 26 static bool hasColors(const llvm::raw_ostream &out) {
39 : out(out), ShowColors(hasColors(out)), FlagsOnly(false) {}
  /external/skia/include/core/
SkVertices.h 79 bool hasColors() const { return SkToBool(this->colors()); }
  /packages/apps/Calendar/src/com/android/calendar/selectcalendars/
CalendarColorCache.java 91 public boolean hasColors(String accountName, String accountType) {
SelectSyncedCalendarsMultiAccountAdapter.java 327 colorSquare.setEnabled(mCache.hasColors(accountName, accountType));
347 if (!mCache.hasColors(accountName, accountType)) {
SelectCalendarsSyncAdapter.java 217 return mCache.hasColors(mData[position].accountName, mData[position].accountType);
SelectCalendarsSimpleAdapter.java 331 return mCache.hasColors(mData[position].accountName, mData[position].accountType);
  /frameworks/base/libs/hwui/
Program.h 136 bool hasColors;
191 hasColors = false;
293 key |= programid(hasColors) << PROGRAM_HAS_COLORS;
ProgramCache.cpp 565 if (description.hasColors) {
589 if (description.hasColors) {
612 if (description.hasColors) {
664 if (description.hasColors) {
819 if (description.hasColors) {
    [all...]
GlopBuilder.cpp 617 mDescription.hasColors = mOutGlop->mesh.vertices.attribFlags & VertexAttribFlags::Color;
  /external/skia/src/gpu/
SkGpuDevice.cpp     [all...]

Completed in 350 milliseconds