Compare commits

..

No commits in common. "vng-dev" and "master" have entirely different histories.

2 changed files with 1 additions and 25 deletions

View file

@ -1,24 +0,0 @@
project(tess2)
include_directories(Include)
set(
SRC
Include/tesselator.h
Source/bucketalloc.c
Source/bucketalloc.h
Source/dict.c
Source/dict.h
Source/geom.c
Source/geom.h
Source/mesh.c
Source/mesh.h
Source/priorityq.c
Source/priorityq.h
Source/sweep.c
Source/sweep.h
Source/tess.c
Source/tess.h
)
add_library(${PROJECT_NAME} ${SRC})

View file

@ -936,7 +936,7 @@ void tessAddContour( TESStesselator *tess, int size, const void* vertices,
for( i = 0; i < numVertices; ++i )
{
const double* coords = (const double*)src;
const TESSreal* coords = (const TESSreal*)src;
src += stride;
if( e == NULL ) {