Cleanup: fix compiler warnings.
This commit is contained in:
@@ -52,7 +52,7 @@ protected:
|
||||
virtual BVHNode *widen_children_nodes(const BVHNode *root) override;
|
||||
|
||||
/* pack */
|
||||
void pack_nodes(const BVHNode *root);
|
||||
void pack_nodes(const BVHNode *root) override;
|
||||
|
||||
void pack_leaf(const BVHStackEntry& e,
|
||||
const LeafNode *leaf);
|
||||
@@ -81,7 +81,7 @@ protected:
|
||||
uint visibility0, uint visibility1);
|
||||
|
||||
/* refit */
|
||||
void refit_nodes();
|
||||
void refit_nodes() override;
|
||||
void refit_node(int idx, bool leaf, BoundBox& bbox, uint& visibility);
|
||||
};
|
||||
|
||||
|
@@ -52,7 +52,7 @@ protected:
|
||||
virtual BVHNode *widen_children_nodes(const BVHNode *root) override;
|
||||
|
||||
/* pack */
|
||||
void pack_nodes(const BVHNode *root);
|
||||
void pack_nodes(const BVHNode *root) override;
|
||||
|
||||
void pack_leaf(const BVHStackEntry& e, const LeafNode *leaf);
|
||||
void pack_inner(const BVHStackEntry& e, const BVHStackEntry *en, int num);
|
||||
@@ -81,7 +81,7 @@ protected:
|
||||
const int num);
|
||||
|
||||
/* refit */
|
||||
void refit_nodes();
|
||||
void refit_nodes() override;
|
||||
void refit_node(int idx, bool leaf, BoundBox& bbox, uint& visibility);
|
||||
};
|
||||
|
||||
|
@@ -63,7 +63,7 @@ protected:
|
||||
virtual BVHNode *widen_children_nodes(const BVHNode *root) override;
|
||||
|
||||
/* pack */
|
||||
void pack_nodes(const BVHNode *root);
|
||||
void pack_nodes(const BVHNode *root) override;
|
||||
|
||||
void pack_leaf(const BVHStackEntry& e, const LeafNode *leaf);
|
||||
void pack_inner(const BVHStackEntry& e, const BVHStackEntry *en, int num);
|
||||
@@ -92,7 +92,7 @@ protected:
|
||||
const int num);
|
||||
|
||||
/* refit */
|
||||
void refit_nodes();
|
||||
void refit_nodes() override;
|
||||
void refit_node(int idx, bool leaf, BoundBox& bbox, uint& visibility);
|
||||
};
|
||||
|
||||
|
@@ -203,7 +203,6 @@ struct ImBuf *imb_load_photoshop(const char *filename, int flags, char colorspac
|
||||
struct ImBuf *ibuf = NULL;
|
||||
int width, height, components;
|
||||
bool is_float, is_alpha;
|
||||
TypeDesc typedesc;
|
||||
int basesize;
|
||||
char file_colorspace[IM_MAX_SPACE];
|
||||
|
||||
|
Reference in New Issue
Block a user