Vulkan: Forgot to extend a few more dirtyflag variables to 64-bit. Avoid a warning.

This commit is contained in:
Henrik Rydgard 2017-01-24 20:00:03 +01:00
parent 62a171c616
commit e17d3e1e7a
4 changed files with 11 additions and 10 deletions

View file

@ -98,6 +98,7 @@ protected:
int prevSizeTex;
int prevSizeCol;
public:
virtual ~TessellationDataTransfer() {}
// Send spline/bezier's control points to vertex shader through floating point texture.
virtual void SendDataToShader(const float *pos, const float *tex, const float *col, int size, bool hasColor, bool hasTexCoords) = 0;
};