mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-17 19:57:55 -06:00
Replace deprecated Boost header in "admesh"
This commit is contained in:
parent
7630be6cf1
commit
3a194f9187
1 changed files with 7 additions and 7 deletions
|
@ -28,7 +28,7 @@
|
||||||
|
|
||||||
#include <boost/log/trivial.hpp>
|
#include <boost/log/trivial.hpp>
|
||||||
#include <boost/nowide/cstdio.hpp>
|
#include <boost/nowide/cstdio.hpp>
|
||||||
#include <boost/detail/endian.hpp>
|
#include <boost/predef/other/endian.h>
|
||||||
|
|
||||||
#include "stl.h"
|
#include "stl.h"
|
||||||
|
|
||||||
|
@ -36,9 +36,9 @@
|
||||||
#error "SEEK_SET not defined"
|
#error "SEEK_SET not defined"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef BOOST_LITTLE_ENDIAN
|
#if BOOST_ENDIAN_BIG_BYTE
|
||||||
extern void stl_internal_reverse_quads(char *buf, size_t cnt);
|
extern void stl_internal_reverse_quads(char *buf, size_t cnt);
|
||||||
#endif /* BOOST_LITTLE_ENDIAN */
|
#endif /* BOOST_ENDIAN_BIG_BYTE */
|
||||||
|
|
||||||
static FILE* stl_open_count_facets(stl_file *stl, const char *file)
|
static FILE* stl_open_count_facets(stl_file *stl, const char *file)
|
||||||
{
|
{
|
||||||
|
@ -89,10 +89,10 @@ static FILE* stl_open_count_facets(stl_file *stl, const char *file)
|
||||||
// Read the int following the header. This should contain # of facets.
|
// Read the int following the header. This should contain # of facets.
|
||||||
uint32_t header_num_facets;
|
uint32_t header_num_facets;
|
||||||
bool header_num_faces_read = fread(&header_num_facets, sizeof(uint32_t), 1, fp) != 0;
|
bool header_num_faces_read = fread(&header_num_facets, sizeof(uint32_t), 1, fp) != 0;
|
||||||
#ifndef BOOST_LITTLE_ENDIAN
|
#if BOOST_ENDIAN_BIG_BYTE
|
||||||
// Convert from little endian to big endian.
|
// Convert from little endian to big endian.
|
||||||
stl_internal_reverse_quads((char*)&header_num_facets, 4);
|
stl_internal_reverse_quads((char*)&header_num_facets, 4);
|
||||||
#endif /* BOOST_LITTLE_ENDIAN */
|
#endif /* BOOST_ENDIAN_BIG_BYTE */
|
||||||
if (! header_num_faces_read || num_facets != header_num_facets)
|
if (! header_num_faces_read || num_facets != header_num_facets)
|
||||||
BOOST_LOG_TRIVIAL(info) << "stl_open_count_facets: Warning: File size doesn't match number of facets in the header: " << file;
|
BOOST_LOG_TRIVIAL(info) << "stl_open_count_facets: Warning: File size doesn't match number of facets in the header: " << file;
|
||||||
}
|
}
|
||||||
|
@ -158,10 +158,10 @@ static bool stl_read(stl_file *stl, FILE *fp, int first_facet, bool first)
|
||||||
// Read a single facet from a binary .STL file. We assume little-endian architecture!
|
// Read a single facet from a binary .STL file. We assume little-endian architecture!
|
||||||
if (fread(&facet, 1, SIZEOF_STL_FACET, fp) != SIZEOF_STL_FACET)
|
if (fread(&facet, 1, SIZEOF_STL_FACET, fp) != SIZEOF_STL_FACET)
|
||||||
return false;
|
return false;
|
||||||
#ifndef BOOST_LITTLE_ENDIAN
|
#if BOOST_ENDIAN_BIG_BYTE
|
||||||
// Convert the loaded little endian data to big endian.
|
// Convert the loaded little endian data to big endian.
|
||||||
stl_internal_reverse_quads((char*)&facet, 48);
|
stl_internal_reverse_quads((char*)&facet, 48);
|
||||||
#endif /* BOOST_LITTLE_ENDIAN */
|
#endif /* BOOST_ENDIAN_BIG_BYTE */
|
||||||
} else {
|
} else {
|
||||||
// Read a single facet from an ASCII .STL file
|
// Read a single facet from an ASCII .STL file
|
||||||
// skip solid/endsolid
|
// skip solid/endsolid
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue