1. 21 Sep, 2025 1 commit
  2. 17 Sep, 2025 1 commit
    • Igor Demin's avatar
      Fix "ComposePanel doesn't use hardware acceleration with... · 67e0c0b8
      Igor Demin authored
      Fix "ComposePanel doesn't use hardware acceleration with RenderSettings.SwingGraphics on Linux" (#1103)
      
      Fixes https://youtrack.jetbrains.com/issue/CMP-8936
      
      `glXChooseFBConfig` fails to find a config with `GLX_DOUBLEBUFFER,
      False` on my machine, it only has double buffered configs. But
      double/single buffering doesn't matter as we use pixel buffers.
      
      Also choose a correct config that is required by
      https://registry.khronos.org/OpenGL-Refpages/gl2.1/xhtml/glXCreatePbuffer.xml:
      ```
      BadMatch is generated if config does not support rendering to pixel buffers (e.g., GLX_DRAWABLE_TYPE does not contain GLX_PBUFFER_BIT)
      ```
      
      ## Testing
      - manually, in the clocks example
      - the modified test failed before the fix, now it doesn't fail
      
      ## Release Notes (Skiko)
      Fix "SkiaSwingLayer doesn't use hardware acceleration on Linux"
      
      ## Release Notes (Compose)
      ### Fixes - Desktop 
      Fix "ComposePanel doesn't use hardware acceleration with
      RenderSettings.SwingGraphics on Linux"
      67e0c0b8
  3. 16 Sep, 2025 1 commit
  4. 15 Sep, 2025 1 commit
  5. 12 Sep, 2025 2 commits
  6. 11 Sep, 2025 4 commits
  7. 09 Sep, 2025 4 commits
  8. 08 Sep, 2025 1 commit
    • Shagen Ogandzhanian's avatar
      Simplify gradle web wasm build (#1089) · d65ac361
      Shagen Ogandzhanian authored
      Following changes introduced in this PR:
      * jsWasmMain and jsWasmTest sourcesets renamed to webMain and webTest
      (it causes less confusion, regarding the fact that we already have
      wasmJsMain, apart from that, this would be a standard name for this
      sourceset in webMain)
      * remove redunant resource processing (there's yet room for improvement
      though)
         * Simplify wasm task introduction
      * Remove flag for building js separately from wasm (this flag was a lie
      - we can not have separate js target)
      d65ac361
  9. 05 Sep, 2025 1 commit
  10. 26 Aug, 2025 1 commit
  11. 14 Aug, 2025 3 commits
    • Alovchin91's avatar
      Update DEVELOPMENT.md (#1086) · 2260bbe4
      Alovchin91 authored
      Update instructions for VS 2022.
      2260bbe4
    • Igor Demin's avatar
      Update DEVELOPMENT.md (VS 2022 requirement) (#1084) · e7081fad
      Igor Demin authored
      It is now required for development. Tested it locally
      e7081fad
    • Alovchin91's avatar
      ANGLE support (#1017) · eda88cdc
      Alovchin91 authored
      This change adds ANGLE renderer support to Skiko.
      
      [ANGLE project](https://chromium.googlesource.com/angle/angle)
      translates OpenGL ES API calls to the native platform's graphics API.
      This is mostly useful on Windows where ANGLE provides the Direct3D 11
      backend.
      
      Right now, there is a gap in Skiko's graphics support. On Windows ARM,
      Skia doesn't support OpenGL yet. At the same time, some GPUs, like
      Parallels or VMware virtual GPUs, don't support DirectX 12. This means
      Skiko falls back to the slow software rendering on those GPUs. ANGLE
      solves this problem by providing an easy-to-use DirectX 11 backend.
      
      In addition, ANGLE is used by Chromium-based browsers and apps, so we
      expect it to be more stable than Skia's DirectX backend.
      
      ---------
      Co-authored-by: 's avatarIgor Demin <igor.demin@jetbrains.com>
      eda88cdc
  12. 08 Aug, 2025 4 commits
  13. 21 Jul, 2025 1 commit
  14. 18 Jul, 2025 1 commit
  15. 04 Jul, 2025 1 commit
  16. 02 Jul, 2025 3 commits
  17. 13 Jun, 2025 1 commit
  18. 12 Jun, 2025 2 commits
  19. 06 Jun, 2025 2 commits
  20. 28 May, 2025 1 commit
    • Thomas Vos's avatar
      Update linux-amd64 Dockerfile to Ubuntu 20.04 (#1062) · b4f463b9
      Thomas Vos authored
      Needed to add `ARG DEBIAN_FRONTEND=noninteractive` so installation does
      not get stuck, copied this from another Dockerfile.
      Also `binutils-2.26` was missing so replaced it with `binutils`, this is
      in line with the other docker files, but I am unsure if this could break
      anything.
      
      On my PC the image build is successful (using `build.sh` script). The
      `run.sh` script is also successful after adapting its paths to my local
      setup. Unsure about publishing.
      b4f463b9
  21. 27 May, 2025 1 commit
  22. 23 May, 2025 1 commit
  23. 09 May, 2025 1 commit
  24. 30 Apr, 2025 1 commit