summaryrefslogtreecommitdiff
path: root/chromium/third_party/swiftshader/src/D3D9/Direct3DPixelShader9.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/swiftshader/src/D3D9/Direct3DPixelShader9.hpp')
-rw-r--r--chromium/third_party/swiftshader/src/D3D9/Direct3DPixelShader9.hpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/chromium/third_party/swiftshader/src/D3D9/Direct3DPixelShader9.hpp b/chromium/third_party/swiftshader/src/D3D9/Direct3DPixelShader9.hpp
index 03c6cd88484..42ebf02e03c 100644
--- a/chromium/third_party/swiftshader/src/D3D9/Direct3DPixelShader9.hpp
+++ b/chromium/third_party/swiftshader/src/D3D9/Direct3DPixelShader9.hpp
@@ -30,16 +30,16 @@ namespace D3D9
public:
Direct3DPixelShader9(Direct3DDevice9 *device, const unsigned long *shaderToken);
- virtual ~Direct3DPixelShader9();
+ ~Direct3DPixelShader9() override;
// IUnknown methods
- long __stdcall QueryInterface(const IID &iid, void **object);
- unsigned long __stdcall AddRef();
- unsigned long __stdcall Release();
+ long __stdcall QueryInterface(const IID &iid, void **object) override;
+ unsigned long __stdcall AddRef() override;
+ unsigned long __stdcall Release() override;
// IDirect3DPixelShader9 methods
- long __stdcall GetDevice(IDirect3DDevice9 **device);
- long __stdcall GetFunction(void *data, unsigned int *size);
+ long __stdcall GetDevice(IDirect3DDevice9 **device) override;
+ long __stdcall GetFunction(void *data, unsigned int *size) override;
// Internal methods
const sw::PixelShader *getPixelShader() const;