| Index: src/gpu/SkGpuDevice.cpp
|
| diff --git a/src/gpu/SkGpuDevice.cpp b/src/gpu/SkGpuDevice.cpp
|
| index b05cd3342535bca31d562839b10b8af0e3a18d1f..203ba1a5e1bc7137165f32b0a8b97cecee6eaf26 100644
|
| --- a/src/gpu/SkGpuDevice.cpp
|
| +++ b/src/gpu/SkGpuDevice.cpp
|
| @@ -1651,14 +1651,14 @@ void SkGpuDevice::drawVertices(const SkDraw& draw, SkCanvas::VertexMode vmode,
|
| SkPaint2GrPaintShader(this->context(), paint, NULL == colors, &grPaint);
|
| }
|
|
|
| +#if 0
|
| if (NULL != xmode && NULL != texs && NULL != colors) {
|
| if (!SkXfermode::IsMode(xmode, SkXfermode::kModulate_Mode)) {
|
| SkDebugf("Unsupported vertex-color/texture xfer mode.\n");
|
| -#if 0
|
| - return
|
| -#endif
|
| + return;
|
| }
|
| }
|
| +#endif
|
|
|
| SkAutoSTMalloc<128, GrColor> convertedColors(0);
|
| if (NULL != colors) {
|
|
|