summaryrefslogtreecommitdiff
path: root/Source/Asura.Engine/Graphics/Shader.h
blob: e15c6e0beb458ca93d8681610bfb457f9e7f3c2c (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
#ifndef __ASURA_ENGINE_SHADER_H__
#define __ASURA_ENGINE_SHADER_H__

#include "luax/luax.h"

#include "Map.h"
#include "StringMap.hpp"
#include "Object.h"
#include "Color.h"
#include "Manager.hpp"

namespace AsuraEngine
{
    namespace Graphics
    {

        class Material;

        ///
        /// һshaderһڲʼ乲ijShaderuniformsͶݣֻuniforms location
        ///
        class Shader
        {
        public:

            Shader();
            ~Shader();

        private:

            friend class Material;

            ///
            /// shaderuniformsIDӳ䡣
            ///
            static StringMap<int> sUniformsID;

            ///
            /// uniformID
            ///
            static int GetUniformID(const String& name);

            ///
            /// ñ
            ///     vec2    Asura_Time             xֵΪ뵱ǰʼʱ䣬yֵΪһ֡ʱ
            ///     vec2    Asura_RenderTargetSize RTĴСΪλ
            ///     Texture Asura_MainTexture      
            ///
            void SetBuiltInUniforms();

            ///
            /// ӳuniforms IDlocation
            ///
            Map<int, int> mLocations;

        };

        class ShaderManager final : public Manager
        {

        };

    }
}

#endif