aboutsummaryrefslogtreecommitdiffhomepage
path: root/gpu/src/GrGpuGLShaders2.h
blob: c484544293d22fdab902b5630d1def57b89ce47e (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/*
    Copyright 2010 Google Inc.

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

         http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
 */


#ifndef GrGpuGLShaders2_DEFINED
#define GrGpuGLShaders2_DEFINED

#include "GrGpuGL.h"

// Programmable OpenGL or OpenGL ES 2.0
class GrGpuGLShaders2 : public GrGpuGL {
public:
             GrGpuGLShaders2();
    virtual ~GrGpuGLShaders2();

    virtual void resetContext();

protected:
    // overrides from GrGpu
    virtual bool flushGraphicsState(PrimitiveType type);
    virtual void setupGeometry(uint32_t startVertex,
                               uint32_t startIndex,
                               uint32_t vertexCount,
                               uint32_t indexCount);

private:
    static const int NUM_STAGES;

    void resetContextHelper();

    // sets the texture matrix uniform for currently bound program
    void flushTextureMatrix();
    // sets the MVP matrix uniform for currently bound program
    void flushViewMatrix();

    // flushes the parameters to two point radial gradient
    void flushRadial2();

    // called at flush time to setup the appropriate program
    void flushProgram(PrimitiveType type);

    struct Program;

    struct StageDesc;
    struct ProgramDesc;

    struct UniLocations;
    struct StageUniLocations;

    struct ShaderCodeSegments;

    class ProgramCache;

    // gets a description of needed shader
    void getProgramDesc(PrimitiveType primType, ProgramDesc* desc);

    // generates and compiles a program from a description and vertex layout
    // will change GL's bound program
    static void GenProgram(const ProgramDesc& desc, Program* program);

    // generates code for a stage of the shader
    static void GenStageCode(int stageNum,
                             const StageDesc& desc,
                             const char* psInColor,
                             const char* psOutColor,
                             const char* vsInCoord,
                             ShaderCodeSegments* segments,
                             StageUniLocations* locations);

    // Compiles a GL shader, returns shader ID or 0 if failed
    // params have same meaning as glShaderSource
    static GLuint CompileShader(GLenum type, int stringCnt,
                                             const char** strings,
                                             int* stringLengths);
    static void DeleteProgram(Program* program);

    void ProgramUnitTest();

    GrGLTexture::Orientation  fTextureOrientation;

    ProgramCache*   fProgramCache;
    Program*        fProgram;
    GLuint          fHWProgramID;

    typedef GrGpuGL INHERITED;
};

#endif