Searched defs:cspace (Results 1 - 5 of 5) sorted by relevance

/external/webkit/Source/WebKit/efl/ewk/
H A Dewk_tiled_backing_store.h81 const Evas_Colorspace cspace; /**< colorspace */ member in struct:_Ewk_Tile
H A Dewk_tiled_matrix.c40 Evas_Colorspace cspace; member in struct:_Ewk_Tile_Matrix
150 * @param cspace the color space used to create tiles in this matrix.
156 Ewk_Tile_Matrix *ewk_tile_matrix_new(Ewk_Tile_Unused_Cache *tuc, unsigned long cols, unsigned long rows, Evas_Colorspace cspace, void (*render_cb)(void *data, Ewk_Tile *t, const Eina_Rectangle *update), const void *data) argument
181 tm->cspace = cspace;
437 t = ewk_tile_new(evas, s, s, zoom, tm->cspace);
439 ERR("could not create tile %dx%d at %f, cspace=%d",
440 s, s, (double)zoom, tm->cspace);
H A Dewk_tiled_model.c218 if (t->cspace == EVAS_COLORSPACE_ARGB8888)
220 else if (t->cspace == EVAS_COLORSPACE_RGB565_A5P)
223 ERR("unknown color space: %d", t->cspace);
241 Ewk_Tile *ewk_tile_new(Evas *evas, Evas_Coord w, Evas_Coord h, float zoom, Evas_Colorspace cspace) argument
257 if (cspace == EVAS_COLORSPACE_ARGB8888) {
261 } else if (cspace == EVAS_COLORSPACE_RGB565_A5P) {
266 ERR("unknown color space: %d", cspace);
270 DBG("size: %dx%d (%d), zoom: %f, cspace=%d",
271 w, h, area, (double)zoom, cspace);
293 ecs = (Evas_Colorspace *)&t->cspace;
[all...]
H A Dewk_tiled_backing_store.c93 Evas_Colorspace cspace; member in struct:_Ewk_Tiled_Backing_Store_Data
729 (tuc, priv->model.cur.cols, priv->model.cur.rows, priv->cspace,
817 priv->cspace = EVAS_COLORSPACE_ARGB8888; // TODO: detect it.
/external/webkit/Source/WebCore/rendering/
H A DRenderThemeSafari.cpp758 CGColorSpaceRef cspace = deviceRGBColorSpaceRef(); local
763 RetainPtr<CGShadingRef> topShading(AdoptCF, CGShadingCreateAxial(cspace, CGPointMake(topGradient.x(), topGradient.y()), CGPointMake(topGradient.x(), topGradient.maxY()), topFunction.get(), false, false));
768 RetainPtr<CGShadingRef> bottomShading(AdoptCF, CGShadingCreateAxial(cspace, CGPointMake(bottomGradient.x(), bottomGradient.y()), CGPointMake(bottomGradient.x(), bottomGradient.maxY()), bottomFunction.get(), false, false));
772 RetainPtr<CGShadingRef> mainShading(AdoptCF, CGShadingCreateAxial(cspace, CGPointMake(r.x(), r.y()), CGPointMake(r.x(), r.maxY()), mainFunction.get(), false, false));
774 RetainPtr<CGShadingRef> leftShading(AdoptCF, CGShadingCreateAxial(cspace, CGPointMake(r.x(), r.y()), CGPointMake(r.x() + radius, r.y()), mainFunction.get(), false, false));
776 RetainPtr<CGShadingRef> rightShading(AdoptCF, CGShadingCreateAxial(cspace, CGPointMake(r.maxX(), r.y()), CGPointMake(r.maxX() - radius, r.y()), mainFunction.get(), false, false));
970 CGColorSpaceRef cspace = deviceRGBColorSpaceRef(); local
979 mainShading.adoptCF(CGShadingCreateAxial(cspace, CGPointMake(bounds.rect().x(), bounds.rect().maxY()), CGPointMake(bounds.rect().maxX(), bounds.rect().maxY()), mainFunction.get(), false, false));
981 mainShading.adoptCF(CGShadingCreateAxial(cspace, CGPointMake(bounds.rect().x(), bounds.rect().y()), CGPointMake(bounds.rect().x(), bounds.rect().maxY()), mainFunction.get(), false, false));

Completed in 84 milliseconds