aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/gpu/gl/debug/GrProgramObj.h
blob: f4ff9d196785433669fb4360359888899477d85f (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
31
32
33
34
35
36
37
38
39
40
41
42
43

/*
 * Copyright 2012 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef GrProgramObj_DEFINED
#define GrProgramObj_DEFINED

#include "SkTArray.h"
#include "GrFakeRefObj.h"
class GrShaderObj;

////////////////////////////////////////////////////////////////////////////////
class GrProgramObj : public GrFakeRefObj {
    GR_DEFINE_CREATOR(GrProgramObj)

public:
    GrProgramObj()
        : GrFakeRefObj()
        , fInUse(false) {}

    void AttachShader(GrShaderObj *shader);

    void deleteAction() override;

    // TODO: this flag system won't work w/ multiple contexts!
    void setInUse()         { fInUse = true; }
    void resetInUse()       { fInUse = false; }
    bool getInUse() const   { return fInUse; }

protected:

private:
    SkTArray<GrShaderObj *> fShaders;
    bool fInUse;            // has this program been activated by a glUseProgram call?

    typedef GrFakeRefObj INHERITED;
};

#endif // GrProgramObj_DEFINED