summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngineVulkan
diff options
context:
space:
mode:
authorassiduous <assiduous@diligentgraphics.com>2020-01-28 19:12:34 +0000
committerassiduous <assiduous@diligentgraphics.com>2020-01-28 19:12:34 +0000
commitbfa5a84d781f70abf95391ff3175cff1d9cc078a (patch)
tree1a1dee46bfe3c5e80ae13b0abcef142bf25348eb /Graphics/GraphicsEngineVulkan
parentImplemented IShaderD3D C interface. (diff)
downloadDiligentCore-bfa5a84d781f70abf95391ff3175cff1d9cc078a.tar.gz
DiligentCore-bfa5a84d781f70abf95391ff3175cff1d9cc078a.zip
Fixed few issues in C interface
Diffstat (limited to 'Graphics/GraphicsEngineVulkan')
-rw-r--r--Graphics/GraphicsEngineVulkan/interface/DeviceContextVk.h1
-rw-r--r--Graphics/GraphicsEngineVulkan/interface/ShaderResourceBindingVk.h4
2 files changed, 2 insertions, 3 deletions
diff --git a/Graphics/GraphicsEngineVulkan/interface/DeviceContextVk.h b/Graphics/GraphicsEngineVulkan/interface/DeviceContextVk.h
index 67183f1b..f6650410 100644
--- a/Graphics/GraphicsEngineVulkan/interface/DeviceContextVk.h
+++ b/Graphics/GraphicsEngineVulkan/interface/DeviceContextVk.h
@@ -96,7 +96,6 @@ DILIGENT_INTERFACE(IDeviceContextVk, IDeviceContext)
struct IDeviceContextVkVtbl
{
struct IObjectMethods Object;
- struct IDeviceObjectMethods DeviceObject;
struct IDeviceContextMethods DeviceContext;
struct IDeviceContextVkMethods DeviceContextVk;
};
diff --git a/Graphics/GraphicsEngineVulkan/interface/ShaderResourceBindingVk.h b/Graphics/GraphicsEngineVulkan/interface/ShaderResourceBindingVk.h
index 886bc73f..ae7faf16 100644
--- a/Graphics/GraphicsEngineVulkan/interface/ShaderResourceBindingVk.h
+++ b/Graphics/GraphicsEngineVulkan/interface/ShaderResourceBindingVk.h
@@ -60,10 +60,10 @@ struct IShaderResourceBindingVkVtbl
//struct IShaderResourceBindingVkMethods ShaderResourceBindingVk;
};
-struct IShaderResourceBindingVk
+typedef struct IShaderResourceBindingVk
{
struct IShaderResourceBindingVkVtbl* pVtbl;
-};
+} IShaderResourceBindingVk;
#endif