Giter Site home page Giter Site logo

Comments (2)

DasLixou avatar DasLixou commented on May 27, 2024

Other things to consider:

  • Layered Rendering (from discord conversation with @geom3trik )
  • Sectioned(idk a name for that?) Requests => For animations do we really want to call redraw request every time ourselves? We could say it is animated and optimize with that information

from vizia.

geom3trik avatar geom3trik commented on May 27, 2024

Repeating here for transparency:

Ah cool 🙂 what you're describing is, more or less, what I had planned. It's something called dirty regions (it has other names too). Essentially you figure out which views need redrawing and then figure out a bounding rectangle which encompasses all of them, then redraw those views using scissor.

As you pointed out, redrawing a view can cause other views behind it to redraw as well, potentially multiple times (but this can still be worth it overall). There's a number of tradeoffs and decisions to be made here. E.g. when is it more optimal to just rerender everything. Other similar ideas to consider are using tiles instead of dirty regions (a view may render in more than one tile), or a layered approach. The difficulty with layers is that a render target switch (rendering to an image and then back to the screen) can be quite expensive.

from vizia.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.