summaryrefslogtreecommitdiffstats
path: root/RenderScript/include
diff options
context:
space:
mode:
Diffstat (limited to 'RenderScript/include')
-rw-r--r--RenderScript/include/DeviceContextFuncBindings.h1
-rw-r--r--RenderScript/include/LuaBindings.h2
2 files changed, 2 insertions, 1 deletions
diff --git a/RenderScript/include/DeviceContextFuncBindings.h b/RenderScript/include/DeviceContextFuncBindings.h
index bf51b69..2d3b8f9 100644
--- a/RenderScript/include/DeviceContextFuncBindings.h
+++ b/RenderScript/include/DeviceContextFuncBindings.h
@@ -30,6 +30,7 @@
namespace std
{
DEFINE_ENUM_HASH( Diligent::COMMIT_SHADER_RESOURCES_FLAGS )
+ DEFINE_ENUM_HASH( Diligent::SET_RENDER_TARGETS_FLAGS )
}
namespace Diligent
diff --git a/RenderScript/include/LuaBindings.h b/RenderScript/include/LuaBindings.h
index a09e1d0..468145f 100644
--- a/RenderScript/include/LuaBindings.h
+++ b/RenderScript/include/LuaBindings.h
@@ -461,7 +461,7 @@ namespace Diligent
BindingsMap.insert( std::make_pair( #Member, std::unique_ptr<MemberBinderBase>(pNewBinder) ) ); \
}while(false)
- template< typename EnumType, typename FlagsType = std::underlying_type<EnumType>::type >
+ template< typename EnumType, typename FlagsType = typename std::underlying_type<EnumType>::type >
class FlagsLoader : public MemberBinderBase
{
public: