shader_object.h
1 /*
2 ** UICore
3 ** Copyright (c) 1997-2015 The UICore Team
4 **
5 ** This software is provided 'as-is', without any express or implied
6 ** warranty. In no event will the authors be held liable for any damages
7 ** arising from the use of this software.
8 **
9 ** Permission is granted to anyone to use this software for any purpose,
10 ** including commercial applications, and to alter it and redistribute it
11 ** freely, subject to the following restrictions:
12 **
13 ** 1. The origin of this software must not be misrepresented; you must not
14 ** claim that you wrote the original software. If you use this software
15 ** in a product, an acknowledgment in the product documentation would be
16 ** appreciated but is not required.
17 ** 2. Altered source versions must be plainly marked as such, and must not be
18 ** misrepresented as being the original software.
19 ** 3. This notice may not be removed or altered from any source distribution.
20 **
21 ** Note: Some of the libraries UICore may link to may have additional
22 ** requirements or restrictions.
23 **
24 ** File Author(s):
25 **
26 ** Magnus Norddahl
27 ** Harry Storbacka
28 ** Kenneth Gangstoe
29 */
30 
31 #pragma once
32 
33 #include <memory>
34 #include "graphic_context.h"
35 #include <vector>
36 
37 namespace uicore
38 {
39  class IODevice;
40  typedef std::shared_ptr<IODevice> IODevicePtr;
41 
43  enum class ShaderType : int
44  {
45  vertex,
46  geometry,
47  fragment,
50  compute,
51  num_types
52  };
53 
56  {
57  public:
59  static std::shared_ptr<ShaderObject> create(const GraphicContextPtr &gc, ShaderType type, const std::string &source);
60  static std::shared_ptr<ShaderObject> create(const GraphicContextPtr &gc, ShaderType type, const void *bytecode, int bytecode_size);
61 
63  static std::shared_ptr<ShaderObject> load(const GraphicContextPtr &gc, ShaderType type, const std::string &fullname);
64  static std::shared_ptr<ShaderObject> load(const GraphicContextPtr &gc, ShaderType type, const IODevicePtr &file);
65 
67  static std::shared_ptr<ShaderObject> load_and_compile(const GraphicContextPtr &gc, ShaderType type, const std::string &filename);
68  static std::shared_ptr<ShaderObject> load_and_compile(const GraphicContextPtr &gc, ShaderType type, const IODevicePtr &file);
69 
71  virtual ShaderType shader_type() const = 0;
72 
74  virtual std::string info_log() const = 0;
75 
77  virtual std::string shader_source() const = 0;
78 
82  virtual void compile() = 0;
83 
87  virtual bool try_compile() = 0;
88  };
89 
90  typedef std::shared_ptr<ShaderObject> ShaderObjectPtr;
91 }
virtual void compile()=0
Compile program.
static std::shared_ptr< ShaderObject > load_and_compile(const GraphicContextPtr &gc, ShaderType type, const std::string &filename)
Load and compile.
ShaderType
Shader Type.
Definition: shader_object.h:43
static std::shared_ptr< ShaderObject > create(const GraphicContextPtr &gc, ShaderType type, const std::string &source)
Constructs a shader.
virtual std::string info_log() const =0
Get shader object's info log.
std::shared_ptr< ShaderObject > ShaderObjectPtr
Definition: program_object.h:41
std::shared_ptr< IODevice > IODevicePtr
Definition: iodevice.h:85
virtual ShaderType shader_type() const =0
Gets the shader type.
static std::shared_ptr< ShaderObject > load(const GraphicContextPtr &gc, ShaderType type, const std::string &fullname)
Load.
std::shared_ptr< GraphicContext > GraphicContextPtr
Definition: d3d_target.h:49
virtual std::string shader_source() const =0
Get shader source code.
Shader Object.
Definition: shader_object.h:55
Definition: Application/application.h:35
virtual bool try_compile()=0
Compile program.