blob: 6410e5eee16527ab03ae370ab42919138244bd0e [file] [log] [blame]
egdaniel7dc4bd02015-10-29 07:57:01 -07001/*
2 * Copyright 2015 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 GrGLSLProcessorTypes_DEFINED
9#define GrGLSLProcessorTypes_DEFINED
10
11#include "GrShaderVar.h"
12
13/**
14 * These are meant to only be used by GrGLSL*Processors so they can add transformed coordinates
15 * to their shader code.
16 */
17typedef GrShaderVar GrGLSLTransformedCoords;
18typedef SkTArray<GrShaderVar> GrGLSLTransformedCoordsArray;
19
20#endif