summaryrefslogtreecommitdiff
path: root/include/libcss
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-02-07 02:22:17 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-02-07 02:22:17 +0000
commit81a449399607a98b7c87890aea4a2eff03498050 (patch)
treea6cd543a019b1258d8d783726c277f475285d4bc /include/libcss
parent3f5ac6a18b13034f14c7f9261f57887a52e454e3 (diff)
downloadlibcss-81a449399607a98b7c87890aea4a2eff03498050.tar.gz
libcss-81a449399607a98b7c87890aea4a2eff03498050.tar.bz2
Oh look, I've changed my mind again.
It's far better that the client creates computed style objects which we then populate. This will allow more efficient composition of styles as, in the most common case, it won't require any memory allocation. svn path=/trunk/libcss/; revision=6390
Diffstat (limited to 'include/libcss')
-rw-r--r--include/libcss/computed.h4
-rw-r--r--include/libcss/select.h2
2 files changed, 4 insertions, 2 deletions
diff --git a/include/libcss/computed.h b/include/libcss/computed.h
index 61cb888..f47c523 100644
--- a/include/libcss/computed.h
+++ b/include/libcss/computed.h
@@ -294,11 +294,13 @@ struct css_computed_style {
void *pw;
};
+css_error css_computed_style_create(css_alloc alloc, void *pw,
+ css_computed_style **result);
css_error css_computed_style_destroy(css_computed_style *style);
css_error css_computed_style_compose(const css_computed_style *parent,
const css_computed_style *child,
- css_computed_style **result);
+ css_computed_style *result);
/******************************************************************************
* Property accessors below here *
diff --git a/include/libcss/select.h b/include/libcss/select.h
index e8d8ff8..1948ca1 100644
--- a/include/libcss/select.h
+++ b/include/libcss/select.h
@@ -29,6 +29,6 @@ css_error css_select_ctx_get_sheet(css_select_ctx *ctx, uint32_t index,
css_error css_select_style(css_select_ctx *ctx, void *node,
uint64_t pseudo_element, uint64_t pseudo_classes,
- uint64_t media, css_computed_style **result);
+ uint64_t media, css_computed_style *result);
#endif