Cleanup: warnings

This commit is contained in:
Campbell Barton 2020-07-30 08:41:03 +10:00
parent 2181028292
commit 929c94ee20
3 changed files with 7 additions and 4 deletions

View File

@ -30,6 +30,7 @@ struct ModifierData;
struct FluidModifierData;
struct Object;
struct ParticleSystem;
struct RegionView3D;
struct ViewLayer;
#define UBO_FIRST_COLOR colorWire
@ -160,14 +161,14 @@ void DRW_globals_update(void);
void DRW_globals_free(void);
struct DRWView *DRW_view_create_with_zoffset(const struct DRWView *parent_view,
const RegionView3D *rv3d,
const struct RegionView3D *rv3d,
float offset);
int DRW_object_wire_theme_get(struct Object *ob, struct ViewLayer *view_layer, float **r_color);
float *DRW_color_background_blend_get(int theme_id);
bool DRW_object_is_flat(Object *ob, int *r_axis);
bool DRW_object_axis_orthogonal_to_view(Object *ob, int axis);
bool DRW_object_is_flat(struct Object *ob, int *r_axis);
bool DRW_object_axis_orthogonal_to_view(struct Object *ob, int axis);
/* draw_hair.c */

View File

@ -37,6 +37,8 @@
#include "GPU_texture.h"
#include "draw_common.h" /* Own include. */
#ifdef WITH_FLUID
# include "manta_fluid_API.h"
#endif

View File

@ -176,7 +176,7 @@ static void do_cloth_brush_build_constraints_task_cb_ex(
{
SculptThreadedTaskData *data = userdata;
SculptSession *ss = data->ob->sculpt;
Brush *brush = data->brush;
const Brush *brush = data->brush;
PBVHVertexIter vd;