aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/gl/builders/GrGLLegacyNvprProgramBuilder.h
blob: f34f6ccd26ae6aa94e55cf40d9b30af286ba0e2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
 * Copyright 2014 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef GrGLLegacyNvprProgramBuilder_DEFINED
#define GrGLLegacyNvprProgramBuilder_DEFINED

#include "GrGLProgramBuilder.h"

class GrGLLegacyNvprProgramBuilder : public GrGLProgramBuilder {
public:
    GrGLLegacyNvprProgramBuilder(GrGLGpu*, const GrOptDrawState&);

    virtual GrGLProgram* createProgram(GrGLuint programID) SK_OVERRIDE;

private:
    int addTexCoordSets(int count);
    void emitTransforms(const GrPendingFragmentStage&,
                        GrGLProcessor::TransformedCoordsArray* outCoords,
                        GrGLInstalledFragProc*) SK_OVERRIDE;

    int fTexCoordSetCnt;

    typedef GrGLProgramBuilder INHERITED;
};

#endif