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
12GrBackendFormat GrMockRenderTargetInfo::getBackendFormat() const {
13 return GrBackendFormat::MakeMock(fColorType, SkImage::CompressionType::kNone);
14}
15
16GrBackendFormat GrMockTextureInfo::getBackendFormat() const {
17 return GrBackendFormat::MakeMock(fColorType, fCompressionType);
18}
19