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 15 static sk_sp<GrGeometryProcessor> make_gp(bool hasColors,
20 if (hasColors) {
122 sk_sp<GrGeometryProcessor> gp(make_gp(this->hasColors(), this->color(), this->viewMatrix()));
127 sizeof(SkPoint) + sizeof(SkPoint) + (this->hasColors() ? sizeof(GrColor) : 0));
160 if (this->hasColors() != that->hasColors()) {
164 if (!this->hasColors() && this->color() != that->color()) {
182 if (this->hasColors()) {
228 bool hasColors) {
232 if (hasColors) {
    [all...]
GrDrawAtlasOp.h 47 bool hasColors() const { return fHasColors; }
GrDrawVerticesOp.cpp 41 fColorArrayType = vertices->hasColors() ? ColorArrayType::kSkColor
45 fLinearizeColors = gammaCorrect && vertices->hasColors();
356 SkTArray<uint32_t>* colors, bool hasColors,
363 if (hasColors) {
390 bool hasColors = random->nextBool();
398 &positions, &texCoords, hasTexCoords, &colors, hasColors, &indices,
403 random, &positions, &texCoords, hasTexCoords, &colors, hasColors, &indices,
GrDrawVerticesOp.h 86 return fVertices->hasColors() && !fIgnoreColors;
  /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());
203 const bool hasColors = SkToBool(packed & kHasColors_Mask);
204 Sizes sizes(vertexCount, indexCount, hasTexs, hasColors);
SkColorSpaceXformCanvas.cpp 95 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 84 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 570 if (description.hasColors) {
594 if (description.hasColors) {
617 if (description.hasColors) {
669 if (description.hasColors) {
824 if (description.hasColors) {
    [all...]
GlopBuilder.cpp 618 mDescription.hasColors = mOutGlop->mesh.vertices.attribFlags & VertexAttribFlags::Color;
  /external/skia/src/gpu/
SkGpuDevice.cpp     [all...]

Completed in 456 milliseconds