mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-09 17:48:19 +00:00
Add readability-avoid-const-params-in-decls
This commit is contained in:
parent
f3796e5455
commit
653c7715a5
|
@ -36,6 +36,7 @@ Checks: >
|
|||
-misc-static-assert,
|
||||
-misc-unused-parameters,
|
||||
modernize-loop-convert,
|
||||
readability-avoid-const-params-in-decls,
|
||||
readability-qualified-auto,
|
||||
performance-*,
|
||||
-performance-no-int-to-ptr,
|
||||
|
|
|
@ -35,9 +35,9 @@ public:
|
|||
//Support various types
|
||||
void SetUniformVec2(int Loc, int Count, const float *pValue);
|
||||
void SetUniformVec4(int Loc, int Count, const float *pValue);
|
||||
void SetUniform(int Loc, const int Value);
|
||||
void SetUniform(int Loc, const bool Value);
|
||||
void SetUniform(int Loc, const float Value);
|
||||
void SetUniform(int Loc, int Value);
|
||||
void SetUniform(int Loc, bool Value);
|
||||
void SetUniform(int Loc, float Value);
|
||||
void SetUniform(int Loc, int Count, const float *pValues);
|
||||
|
||||
//for performance reason we do not use SetUniform with using strings... save the Locations of the variables instead
|
||||
|
|
|
@ -504,7 +504,7 @@ public:
|
|||
virtual void DemoSliceBegin();
|
||||
virtual void DemoSliceEnd();
|
||||
virtual void DemoSlice(const char *pDstPath, CLIENTFUNC_FILTER pfnFilter, void *pUser);
|
||||
virtual void SaveReplay(const int Length);
|
||||
virtual void SaveReplay(int Length);
|
||||
|
||||
virtual bool EditorHasUnsavedData() const { return m_pEditor->HasUnsavedData(); }
|
||||
|
||||
|
|
|
@ -229,7 +229,7 @@ private:
|
|||
static void Con_LeakIpAddress(IConsole::IResult *pResult, void *pUserData);
|
||||
|
||||
void SetInfo(CServerEntry *pEntry, const CServerInfo &Info);
|
||||
void SetLatency(const NETADDR Addr, int Latency);
|
||||
void SetLatency(NETADDR Addr, int Latency);
|
||||
|
||||
static void ConfigSaveCallback(IConfigManager *pConfigManager, void *pUserData);
|
||||
};
|
||||
|
|
|
@ -87,8 +87,8 @@ class CMenus : public CComponent
|
|||
int DoButton_CheckBox(const void *pID, const char *pText, int Checked, const CUIRect *pRect);
|
||||
int DoButton_CheckBoxAutoVMarginAndSet(const void *pID, const char *pText, int *pValue, CUIRect *pRect, float VMargin);
|
||||
int DoButton_CheckBox_Number(const void *pID, const char *pText, int Checked, const CUIRect *pRect);
|
||||
ColorHSLA DoLine_ColorPicker(int *pResetID, const float LineSize, const float WantedPickerPosition, const float LabelSize, const float BottomMargin, CUIRect *pMainRect, const char *pText, unsigned int *pColorValue, const ColorRGBA DefaultColor, bool CheckBoxSpacing = true, bool UseCheckBox = false, int *pCheckBoxValue = NULL);
|
||||
void DoLaserPreview(const CUIRect *pRect, const ColorHSLA OutlineColor, const ColorHSLA InnerColor);
|
||||
ColorHSLA DoLine_ColorPicker(int *pResetID, float LineSize, float WantedPickerPosition, float LabelSize, float BottomMargin, CUIRect *pMainRect, const char *pText, unsigned int *pColorValue, ColorRGBA DefaultColor, bool CheckBoxSpacing = true, bool UseCheckBox = false, int *pCheckBoxValue = NULL);
|
||||
void DoLaserPreview(const CUIRect *pRect, ColorHSLA OutlineColor, ColorHSLA InnerColor);
|
||||
int DoValueSelector(void *pID, CUIRect *pRect, const char *pLabel, bool UseScroll, int Current, int Min, int Max, int Step, float Scale, bool IsHex, float Round, ColorRGBA *Color);
|
||||
int DoButton_Icon(int ImageId, int SpriteId, const CUIRect *pRect);
|
||||
int DoButton_GridHeader(const void *pID, const char *pText, int Checked, const CUIRect *pRect);
|
||||
|
|
Loading…
Reference in a new issue