Index: gm/gm_error.h |
=================================================================== |
--- gm/gm_error.h (revision 8534) |
+++ gm/gm_error.h (working copy) |
@@ -26,7 +26,8 @@ |
// or off (as long as the number of these errors is 0). |
kNoGpuContext_ErrorType, |
- kImageMismatch_ErrorType, |
+ kRenderModeMismatch_ErrorType, |
+ kExpectationsMismatch_ErrorType, |
kMissingExpectations_ErrorType, |
kWritingReferenceImage_ErrorType, |
kLast_ErrorType = kWritingReferenceImage_ErrorType |
@@ -39,8 +40,10 @@ |
switch(type) { |
case kNoGpuContext_ErrorType: |
return "NoGpuContext"; |
- case kImageMismatch_ErrorType: |
- return "ImageMismatch"; |
+ case kRenderModeMismatch_ErrorType: |
+ return "RenderModeMismatch"; |
+ case kExpectationsMismatch_ErrorType: |
+ return "ExpectationsMismatch"; |
case kMissingExpectations_ErrorType: |
return "MissingExpectations"; |
case kWritingReferenceImage_ErrorType: |