Introducing to SKIA with C++ by Vladyslav Yeremeichuk

Поделиться
HTML-код
  • Опубликовано: 12 сен 2024

Комментарии • 13

  • @姚沐青
    @姚沐青 Месяц назад

    nice work, useful to me, thank you

  • @sourbhkamboj8356
    @sourbhkamboj8356 Год назад +1

    simple and a fast skia intro, thankyou

  • @ff91299
    @ff91299 19 дней назад

    nice!

  • @khaimgulkovich3368
    @khaimgulkovich3368 21 день назад

    Usually, programming on GPU is done with special languages like CUDA or OpenCL. What language is used in Skia?

    • @Kitsunee2222
      @Kitsunee2222 11 дней назад

      Skia use OpenGL (OpenGLES for mobile), or modern Vulkan (if possible) and shaders for graphics pipeline. It's graphics API, not compute, like CUDA or OpenCL. Skia written on C++.

  • @zhenji1635
    @zhenji1635 Год назад

    Your example works well, thank you! But if i build skparagraph.lib(static),and copy example from skia\modules\skparagraph\tests, it always crash, when calling paragraph->layout(); Can you try and give me some advice?

  • @robby3467
    @robby3467 Год назад

    I wanted to build on Windows with Visual Studio a while ago but gave up because the instructions on the official website are garbage. It talks about bin/gn and --ide=vs etc. but none of those commands work. It also talks about 'args' without defining what they are or how to use them. Just lists them. This is typical of open source... complete lack of useful instruction. Wondering who else has not been able to build this library?

  • @SatyaKolachina
    @SatyaKolachina 5 месяцев назад

    Sorry, I could not give better rating for this video. You have performed all the program before starting the tutorial. For a platform like Skia, this approach is useless. Even if you have written just one simple program showing how to create skia objects while doing the tutorial, it would have been very useful. Undoubtedly you are a very good programmer, but unfortunately your tutorial is not useful for most of people who want to learn how to use Skia.

  • @user-sm3nf3dt9f
    @user-sm3nf3dt9f 3 года назад +9

    Без обид, но думаю на русском было бы лучше.

  • @persona-qs5sj
    @persona-qs5sj Год назад +1

    gay voice

  • @videos4mydad
    @videos4mydad 2 года назад +5

    bin\gn gen out/Shared --args="is_official_build=true is_component_build=true skia_use_system_expat=false skia_use_system_libjpeg_turbo=false skia_use_system_libpng=false skia_use_system_libwebp=false skia_use_system_zlib=false skia_use_system_icu=false skia_use_system_harfbuzz=false skia_use_gl=true"

  • @videos4mydad
    @videos4mydad 2 года назад

    Note: the green arrow threw me off. I started with "bin\gn" command before running "python tools/..." command!!! that caused me all kinds of problems. Just warning...