OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2010 Google Inc. | 2 * Copyright 2010 Google Inc. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 | 8 |
9 #include "SkGr.h" | 9 #include "SkGr.h" |
10 | 10 |
(...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
363 switch (ct) { | 363 switch (ct) { |
364 case kUnknown_SkColorType: | 364 case kUnknown_SkColorType: |
365 return kUnknown_GrPixelConfig; | 365 return kUnknown_GrPixelConfig; |
366 case kAlpha_8_SkColorType: | 366 case kAlpha_8_SkColorType: |
367 return kAlpha_8_GrPixelConfig; | 367 return kAlpha_8_GrPixelConfig; |
368 case kRGB_565_SkColorType: | 368 case kRGB_565_SkColorType: |
369 return kRGB_565_GrPixelConfig; | 369 return kRGB_565_GrPixelConfig; |
370 case kARGB_4444_SkColorType: | 370 case kARGB_4444_SkColorType: |
371 return kRGBA_4444_GrPixelConfig; | 371 return kRGBA_4444_GrPixelConfig; |
372 case kRGBA_8888_SkColorType: | 372 case kRGBA_8888_SkColorType: |
373 //if (kSRGB_SkColorProfileType == pt) { | 373 if (kSRGB_SkColorProfileType == pt) { |
374 // return kSRGBA_8888_GrPixelConfig; | 374 return kSRGBA_8888_GrPixelConfig; |
375 //} | 375 } |
376 return kRGBA_8888_GrPixelConfig; | 376 return kRGBA_8888_GrPixelConfig; |
377 case kBGRA_8888_SkColorType: | 377 case kBGRA_8888_SkColorType: |
378 return kBGRA_8888_GrPixelConfig; | 378 return kBGRA_8888_GrPixelConfig; |
379 case kIndex_8_SkColorType: | 379 case kIndex_8_SkColorType: |
380 return kIndex_8_GrPixelConfig; | 380 return kIndex_8_GrPixelConfig; |
381 case kGray_8_SkColorType: | 381 case kGray_8_SkColorType: |
382 return kAlpha_8_GrPixelConfig; // TODO: gray8 support on gpu | 382 return kAlpha_8_GrPixelConfig; // TODO: gray8 support on gpu |
383 case kRGBA_F16_SkColorType: | 383 case kRGBA_F16_SkColorType: |
384 return kRGBA_half_GrPixelConfig; | 384 return kRGBA_half_GrPixelConfig; |
385 } | 385 } |
(...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
696 SkErrorInternals::SetError( kInvalidPaint_SkError, | 696 SkErrorInternals::SetError( kInvalidPaint_SkError, |
697 "Sorry, I don't understand the filtering
" | 697 "Sorry, I don't understand the filtering
" |
698 "mode you asked for. Falling back to " | 698 "mode you asked for. Falling back to " |
699 "MIPMaps."); | 699 "MIPMaps."); |
700 textureFilterMode = GrTextureParams::kMipMap_FilterMode; | 700 textureFilterMode = GrTextureParams::kMipMap_FilterMode; |
701 break; | 701 break; |
702 | 702 |
703 } | 703 } |
704 return textureFilterMode; | 704 return textureFilterMode; |
705 } | 705 } |
OLD | NEW |