Skip to content

Commit

Permalink
Patterns
Browse files Browse the repository at this point in the history
Have the majority of patterns done
mesh patterns needs some additional tests
mesh also needs the path object finished
rastersource patterns still need support with an enum
  • Loading branch information
auroraeosrose committed Jul 3, 2015
1 parent f8fdd57 commit 073318f
Show file tree
Hide file tree
Showing 81 changed files with 2,372 additions and 3,623 deletions.
12 changes: 11 additions & 1 deletion src/cairo.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,16 @@ PHP_MINIT_FUNCTION(cairo)
}
/* }}} */

/* {{{ PHP_MSHUTDOWN_FUNCTION */
PHP_MSHUTDOWN_FUNCTION(cairo)
{
#if defined(ZEND_DEBUG) && ZEND_DEBUG == 1
cairo_debug_reset_static_data();
#endif

return SUCCESS;
}

/* {{{ PHP_MINFO_FUNCTION */
PHP_MINFO_FUNCTION(cairo)
{
Expand Down Expand Up @@ -152,7 +162,7 @@ zend_module_entry cairo_module_entry = {
"cairo",
NULL,
PHP_MINIT(cairo),
NULL,
PHP_MSHUTDOWN(cairo),
NULL,
NULL,
PHP_MINFO(cairo),
Expand Down
Loading

0 comments on commit 073318f

Please sign in to comment.