From aae19514ac124c6ef914fb38220e8c4e017580c5 Mon Sep 17 00:00:00 2001 From: Erwin Coumans Date: Tue, 27 Mar 2018 10:18:00 -0700 Subject: [PATCH] make the method not pure virtual (it breaks some internal code) --- examples/CommonInterfaces/CommonGUIHelperInterface.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/CommonInterfaces/CommonGUIHelperInterface.h b/examples/CommonInterfaces/CommonGUIHelperInterface.h index 916a82343..a9e273f02 100644 --- a/examples/CommonInterfaces/CommonGUIHelperInterface.h +++ b/examples/CommonInterfaces/CommonGUIHelperInterface.h @@ -94,8 +94,8 @@ struct GUIHelperInterface int* segmentationMaskBuffer, int segmentationMaskBufferSizeInPixels, int startPixelIndex, int destinationWidth, int destinationHeight, int* numPixelsCopied){} - virtual void setProjectiveTextureMatrices(const float viewMatrix[16], const float projectionMatrix[16])=0; - virtual void setProjectiveTexture(bool useProjectiveTexture)=0; + virtual void setProjectiveTextureMatrices(const float viewMatrix[16], const float projectionMatrix[16]){} + virtual void setProjectiveTexture(bool useProjectiveTexture){} virtual void autogenerateGraphicsObjects(btDiscreteDynamicsWorld* rbWorld) =0;