aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/evas/src/modules/engines/direct3d/evas_direct3d_shader_pack.h
blob: b865f783ed8c61461ecbae39c1949b07d2f7e4ae (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
#ifndef __EVAS_DIRECT3D_SHADER_PACK_H__
#define __EVAS_DIRECT3D_SHADER_PACK_H__

#include "evas_engine.h"

#include "ref.h"
#include "array.h"

class D3DDevice;

class D3DShaderPack : virtual public Referenc
{
public:
   ~D3DShaderPack();

   static D3DShaderPack *Current();
   static void SetCurrent(D3DShaderPack *obj);

   bool Initialize(D3DDevice *d3d);
   void Uninitialize();

   bool SetVDecl(D3DDevice *d3d, int id);
   bool SetVS(D3DDevice *d3d, int id);
   bool SetPS(D3DDevice *d3d, int id);

public:
   enum VDECL
   {
      VDECL_XYC = 0,
      VDECL_XYUV,
      VDECL_XYUVC,
      VDECL_XYZUVC,

      VDECL_NUM
   };

   enum VS
   {
      VS_COPY_COLOR = 0,
      VS_COPY_UV,
      VS_COPY_UV_COLOR,
      VS_COPY_UV_COLOR_Z,

      VS_NUM
   };

   enum PS
   {
      PS_COLOR = 0,
      PS_TEX,
      PS_TEX_COLOR_FILTER,
      PS_TEX_2,

      PS_NUM
   };

private:
   D3DShaderPack();

   bool InitVertexDeclarations(D3DDevice *d3d);
   bool InitVertexShaders(D3DDevice *d3d);
   bool InitPixelShaders(D3DDevice *d3d);

   void *CompileShader(D3DDevice *d3d, bool make_vs, const char *name,
      const char *buf, int size);

private:
   TArray<LPDIRECT3DVERTEXDECLARATION9> _vdecl;
   TArray<LPDIRECT3DVERTEXSHADER9> _vs;
   TArray<LPDIRECT3DPIXELSHADER9> _ps;

   static Ref<D3DShaderPack> _this;
};

#endif  // __EVAS_DIRECT3D_SHADER_PACK_H__