blob: 67b6fce2eb1fceb25b40d8636b7e3c7d75e98e2f [file] [log] [blame]
bsalomonf267c1e2016-02-01 13:16:14 -08001/*
2 * Copyright 2016 Google Inc.
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#ifndef GrTextureToYUVPlanes_DEFINED
9#define GrTextureToYUVPlanes_DEFINED
10
11#include "SkImageInfo.h"
12#include "SkSize.h"
13
14class GrTexture;
15
16bool GrTextureToYUVPlanes(GrTexture* texture, const SkISize[3], void* const planes[3],
17 const size_t rowBytes[3], SkYUVColorSpace);
18
19#endif