| OLD | NEW |
| 1 | 1 |
| 2 /* | 2 /* |
| 3 * Copyright 2014 Google Inc. | 3 * Copyright 2014 Google Inc. |
| 4 * | 4 * |
| 5 * Use of this source code is governed by a BSD-style license that can be | 5 * Use of this source code is governed by a BSD-style license that can be |
| 6 * found in the LICENSE file. | 6 * found in the LICENSE file. |
| 7 */ | 7 */ |
| 8 | 8 |
| 9 // This test only works with the GPU backend. | 9 // This test only works with the GPU backend. |
| 10 | 10 |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 SkAutoTUnref<GrEffect> effect( | 107 SkAutoTUnref<GrEffect> effect( |
| 108 GrYUVtoRGBEffect::Create(texture[indices[i][0]], | 108 GrYUVtoRGBEffect::Create(texture[indices[i][0]], |
| 109 texture[indices[i][1]], | 109 texture[indices[i][1]], |
| 110 texture[indices[i][2]])); | 110 texture[indices[i][2]])); |
| 111 if (effect) { | 111 if (effect) { |
| 112 SkMatrix viewMatrix; | 112 SkMatrix viewMatrix; |
| 113 viewMatrix.setTranslate(x, y); | 113 viewMatrix.setTranslate(x, y); |
| 114 drawState->reset(viewMatrix); | 114 drawState->reset(viewMatrix); |
| 115 drawState->setRenderTarget(rt); | 115 drawState->setRenderTarget(rt); |
| 116 drawState->setColor(0xffffffff); | 116 drawState->setColor(0xffffffff); |
| 117 drawState->addColorEffect(effect, 1); | 117 drawState->addColorEffect(effect); |
| 118 tt.target()->drawSimpleRect(renderRect); | 118 tt.target()->drawSimpleRect(renderRect); |
| 119 } | 119 } |
| 120 x += renderRect.width() + kTestPad; | 120 x += renderRect.width() + kTestPad; |
| 121 } | 121 } |
| 122 | 122 |
| 123 GrUnlockAndUnrefCachedBitmapTexture(texture[0]); | 123 GrUnlockAndUnrefCachedBitmapTexture(texture[0]); |
| 124 GrUnlockAndUnrefCachedBitmapTexture(texture[1]); | 124 GrUnlockAndUnrefCachedBitmapTexture(texture[1]); |
| 125 GrUnlockAndUnrefCachedBitmapTexture(texture[2]); | 125 GrUnlockAndUnrefCachedBitmapTexture(texture[2]); |
| 126 } | 126 } |
| 127 | 127 |
| 128 private: | 128 private: |
| 129 SkBitmap fBmp[3]; | 129 SkBitmap fBmp[3]; |
| 130 | 130 |
| 131 typedef GM INHERITED; | 131 typedef GM INHERITED; |
| 132 }; | 132 }; |
| 133 | 133 |
| 134 DEF_GM( return SkNEW(YUVtoRGBEffect); ) | 134 DEF_GM( return SkNEW(YUVtoRGBEffect); ) |
| 135 } | 135 } |
| 136 | 136 |
| 137 #endif | 137 #endif |
| OLD | NEW |