Coder Social home page Coder Social logo

Comments (4)

ogoffart avatar ogoffart commented on July 29, 2024

Thanks for filling a bug.
Could you provide a small testcase we can use to reproduce the problem?

from slint.

LeeeSe avatar LeeeSe commented on July 29, 2024

sure

import { Button, VerticalBox, ScrollView } from "std-widgets.slint";

export component AppWindow inherits Window {
    VerticalBox {
        ScrollView {
            VerticalBox {
                Text {
                    text: "first first first first first first first first first first first";
                }

                Text {
                    text: "second second second second second second second second second second";
                }
            }
        }
    }
}

If you quickly change the size of the window, you will find the problem.

from slint.

tronical avatar tronical commented on July 29, 2024

I can reproduce this. The NSView::setLayerContentsPlacement call we have is supposed to avoid this problem, but it seems that after all the refactoring it's now in a place where it's called too late.

So from what I can see, it jitters when using renderer-femtovg as well as renderer-skia (which defaults to metal on macOS), but it is smooth and jitter-free when using renderer-skia-opengl.

from slint.

tronical avatar tronical commented on July 29, 2024

For the OpenGL renderer, the difference is the timing when NSView::setLayerContentsPlacement (or contentsGravity on the layer) is set. It must be done /after/ the NSOpenGLContext is associated with the view - I guess because the corresponding (hidden) layer doesn't exist until then. For Metal it's the same game, we're not setting that at all yet.

from slint.

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.