1 /* 2 * Copyright 2019 Google LLC 3 * 4 * Use of this source code is governed by a BSD-style license that can be 5 * found in the LICENSE file. 6 */ 7 8 #include "include/gpu/mock/GrMockTypes.h" 9 10 #include "include/gpu/GrBackendSurface.h" 11 getBackendFormat() const12GrBackendFormat GrMockRenderTargetInfo::getBackendFormat() const { 13 return GrBackendFormat::MakeMock(fColorType); 14 } 15 getBackendFormat() const16GrBackendFormat GrMockTextureInfo::getBackendFormat() const { 17 return GrBackendFormat::MakeMock(fColorType); 18 } 19