Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-05-24 | fz_pixmap revamp: add stride and make alpha optional | Robin Watts | |
fz_pixmaps now have an explicit stride value. By default no change from before, but code all copes with extra gaps at the end of the line. The alpha data in fz_pixmaps is no longer compulsory. mudraw: use rgb not rgba (ppmraw), cmyk not cmyka (pkmraw). Update halftone code to not expect alpha plane. Update PNG writing to cope with alpha less input. Also hide repeated params within the png output context. ARM code needs updating. | |||
2016-04-04 | epub: Add stripped Charis SIL font to use as the default font for EPUB. | Tor Andersson | |
2016-03-23 | Compile embedded fonts in separate C files. | Tor Andersson | |
Also change unsigned char into const char for embedded data. | |||
2016-02-29 | gl: Show MuPDF version number in usage message. | Tor Andersson | |
2016-02-24 | Add fz_show_string function and move wmode argument to end. | Tor Andersson | |
2016-02-11 | gl: Use fz_font instead of freetype directly. | Tor Andersson | |
2016-01-28 | Add Noto fallback fonts. | Tor Andersson | |
Look up fallback fonts by unicode script, with a flag to select the serif or sans-serif font style where such variants exist. Move all builtin fonts into fitz namespace. | |||
2016-01-08 | gl: Clean up mupdf objects at exit. | Tor Andersson | |
Makes valgrind somewhat usable (glfw and xlib still leak plenty of global objects at exit). | |||
2016-01-06 | Squash some warnings | Robin Watts | |
2016-01-05 | Remove fz_page argument from fz_annot function calls. | Tor Andersson | |
2016-01-05 | gl: Draw outline around text fields. | Tor Andersson | |
2015-12-11 | gl: Move related case clauses together. | Tor Andersson | |
2015-11-10 | gl: Use named constants instead of magic numbers. | Tor Andersson | |
2015-10-29 | gl: Limit shrinkwrap window sizing to fit the primary monitor size. | Tor Andersson | |
2015-10-15 | gl: Rename font variables. | Tor Andersson | |
2015-10-14 | gl: Fix win32 release mode build. | Tor Andersson | |
Always build with the 'windows' subsystem and use WinMain. Turn on USE_OUTPUT_DEBUG_STRING to capture fz_warn and fz_throw error messages. | |||
2015-10-14 | gl: Add missing icon file. | Tor Andersson | |
2015-10-06 | gl: Remove stray semicolon in win32 file selection error check. | Tor Andersson | |
2015-10-06 | gl: Add checks to prevent overruns in the presence of malformed UTF-8. | Tor Andersson | |
2015-10-06 | gl: Accept command line arguments. | Tor Andersson | |
2015-10-06 | gl: Clamp scrollbar when the content is fully visible. | Tor Andersson | |
2015-10-06 | gl: Cleanups. | Tor Andersson | |
2015-10-06 | gl: Display metadata information overlay. | Tor Andersson | |
2015-10-06 | gl: Keep shrinkwrap when toggling outline side panel. | Tor Andersson | |
2015-10-06 | gl: Fix text selection bug. | Tor Andersson | |
2015-10-06 | gl: Add scroll wheel support. | Tor Andersson | |
2015-10-06 | gl: Base UI sizes on line height. | Tor Andersson | |
2015-10-06 | gl: Add simple (mouse event only) forms support. | Tor Andersson | |
2015-10-06 | gl: Keep fz_page around for later use with annotations. | Tor Andersson | |
2015-10-06 | gl: Only compute view transform once. | Tor Andersson | |
2015-10-06 | gl: Render page contents and annotations to separate textures. | Tor Andersson | |
2015-10-06 | gl: Use utility functions. | Tor Andersson | |
2015-10-06 | gl: Bundle page texture info into a struct. | Tor Andersson | |
2015-10-06 | gl: Windows stuff. | Tor Andersson | |
* Add icons to application and window. * Open file dialog if no command line argument. * Install file type associations. | |||
2015-10-06 | gl: Cut, copy, and paste in text fields. | Tor Andersson | |
2015-10-06 | gl: Use UTF-8 string internally in text field. | Tor Andersson | |
2015-10-06 | gl: Don't try searching outside the document. | Tor Andersson | |
2015-10-06 | gl: Use upper control characters for special keys. | Tor Andersson | |
2015-10-06 | gl: Split text field handling into separate file and add keyboard focus. | Tor Andersson | |
2015-10-06 | gl: Handle keyboard events in main loop. | Tor Andersson | |
Also fix event loop and refreshing the display at the correct times. | |||
2015-10-06 | gl: Don't require ARB_texture_non_power_of_two extension. | Tor Andersson | |
2015-10-06 | gl: Add an internal header file for GL application. | Tor Andersson | |
2015-10-06 | gl: Remove unneeded fz_malloc return value test. | Tor Andersson | |
2015-10-06 | gl: Remove unneeded printf message. | Tor Andersson | |
2015-10-06 | gl: Rename some variables for clarity. | Tor Andersson | |
2015-10-06 | gl: Fix MSVC warnings. | Tor Andersson | |
2015-10-06 | gl: Fix event/display loop. | Tor Andersson | |
Now should behave more like the old glutPostRedisplay code did. | |||
2015-10-06 | gl: Don't zero 'number' on all keypresses. | Tor Andersson | |
Bug casued by difference between GLUT and GLFW event interfaces. | |||
2015-10-06 | gl: Use GLFW instead of GLUT. | Tor Andersson | |
Add OpenGL text rendering using textured quads, instead of using glut bitmap fonts. |