Skip to content

Commit

Permalink
Fixed font directory upper cases (issue 43)
Browse files Browse the repository at this point in the history
  • Loading branch information
rougier committed Jan 23, 2013
1 parent 0b0e12d commit d1e1efd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ IF (ANT_TWEAK_BAR_FOUND)
ENDIF (ANT_TWEAK_BAR_FOUND)

# Copy font and shaders into build directory for in-place testing
FILE(GLOB Fonts "fonts/*.ttf")
FILE(GLOB fonts "fonts/*.ttf")
file(COPY ${Fonts} DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/Fonts)
FILE(GLOB Shaders "shaders/*.vert" "shaders/*.frag")
file(COPY ${Shaders} DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/shaders)
Expand Down
1 change: 1 addition & 0 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,4 @@ Contributors:
* bsoddd (Bug report & fix)
* Jim Teeuwen (Bug report & fix)
* quarnster (Bug report & fix)
* Per Inge Mathisen (Bug report @ fix)
2 changes: 1 addition & 1 deletion demo-distance-field-3.c
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ main( int argc, char **argv )

// Generate the glyp at 512 points, compute distance field and scale it
// back to 32 points
// Just load another glyp if you want to see difference (draw render a '@')
// Just load another glyph if you want to see difference (draw render a '@')
glyph = load_glyph( "fonts/Vera.ttf", L'@', 512, 32, 0.05);
vector_push_back( font->glyphs, &glyph );

Expand Down

0 comments on commit d1e1efd

Please sign in to comment.