Lines Matching defs:DisplayListRenderer

28 #include "DisplayListRenderer.h"
34 DisplayListRenderer::DisplayListRenderer():
40 DisplayListRenderer::~DisplayListRenderer() {
44 void DisplayListRenderer::reset() {
108 DisplayList* DisplayListRenderer::getDisplayList(DisplayList* displayList) {
118 bool DisplayListRenderer::isDeferred() {
122 void DisplayListRenderer::setViewport(int width, int height) {
129 status_t DisplayListRenderer::prepareDirty(float left, float top,
143 void DisplayListRenderer::finish() {
148 void DisplayListRenderer::interrupt() {
151 void DisplayListRenderer::resume() {
154 status_t DisplayListRenderer::callDrawGLFunction(Functor *functor, Rect& dirty) {
161 int DisplayListRenderer::save(int flags) {
166 void DisplayListRenderer::restore() {
177 void DisplayListRenderer::restoreToCount(int saveCount) {
183 int DisplayListRenderer::saveLayer(float left, float top, float right, float bottom,
189 void DisplayListRenderer::translate(float dx, float dy) {
197 void DisplayListRenderer::rotate(float degrees) {
202 void DisplayListRenderer::scale(float sx, float sy) {
207 void DisplayListRenderer::skew(float sx, float sy) {
212 void DisplayListRenderer::setMatrix(SkMatrix* matrix) {
218 void DisplayListRenderer::concatMatrix(SkMatrix* matrix) {
224 bool DisplayListRenderer::clipRect(float left, float top, float right, float bottom,
230 bool DisplayListRenderer::clipPath(SkPath* path, SkRegion::Op op) {
236 bool DisplayListRenderer::clipRegion(SkRegion* region, SkRegion::Op op) {
242 status_t DisplayListRenderer::drawDisplayList(DisplayList* displayList,
255 status_t DisplayListRenderer::drawLayer(Layer* layer, float x, float y) {
261 status_t DisplayListRenderer::drawBitmap(SkBitmap* bitmap, float left, float top, SkPaint* paint) {
269 status_t DisplayListRenderer::drawBitmap(SkBitmap* bitmap, SkMatrix* matrix, SkPaint* paint) {
278 status_t DisplayListRenderer::drawBitmap(SkBitmap* bitmap, float srcLeft, float srcTop,
299 status_t DisplayListRenderer::drawBitmapData(SkBitmap* bitmap, float left, float top,
308 status_t DisplayListRenderer::drawBitmapMesh(SkBitmap* bitmap, int meshWidth, int meshHeight,
321 status_t DisplayListRenderer::drawPatch(SkBitmap* bitmap, Res_png_9patch* patch,
331 status_t DisplayListRenderer::drawColor(int color, SkXfermode::Mode mode) {
336 status_t DisplayListRenderer::drawRect(float left, float top, float right, float bottom,
343 status_t DisplayListRenderer::drawRoundRect(float left, float top, float right, float bottom,
350 status_t DisplayListRenderer::drawCircle(float x, float y, float radius, SkPaint* paint) {
356 status_t DisplayListRenderer::drawOval(float left, float top, float right, float bottom,
363 status_t DisplayListRenderer::drawArc(float left, float top, float right, float bottom,
371 status_t DisplayListRenderer::drawPath(SkPath* path, SkPaint* paint) {
379 status_t DisplayListRenderer::drawLines(float* points, int count, SkPaint* paint) {
387 status_t DisplayListRenderer::drawPoints(float* points, int count, SkPaint* paint) {
395 status_t DisplayListRenderer::drawTextOnPath(const char* text, int bytesCount, int count,
409 status_t DisplayListRenderer::drawPosText(const char* text, int bytesCount, int count,
422 status_t DisplayListRenderer::drawText(const char* text, int bytesCount, int count,
438 status_t DisplayListRenderer::drawRects(const float* rects, int count, SkPaint* paint) {
447 void DisplayListRenderer::resetShader() {
451 void DisplayListRenderer::setupShader(SkiaShader* shader) {
456 void DisplayListRenderer::resetColorFilter() {
460 void DisplayListRenderer::setupColorFilter(SkiaColorFilter* filter) {
465 void DisplayListRenderer::resetShadow() {
470 void DisplayListRenderer::setupShadow(float radius, float dx, float dy, int color) {
475 void DisplayListRenderer::resetPaintFilter() {
479 void DisplayListRenderer::setupPaintFilter(int clearBits, int setBits) {
483 void DisplayListRenderer::insertRestoreToCount() {
491 void DisplayListRenderer::insertTranslate() {
502 void DisplayListRenderer::addStateOp(StateOp* op) {
506 void DisplayListRenderer::addDrawOp(DrawOp* op) {