Skip to content
Snippets Groups Projects
  1. Oct 08, 2021
  2. Oct 07, 2021
  3. Oct 06, 2021
  4. Oct 05, 2021
  5. Oct 04, 2021
    • Fatih Uzunoğlu's avatar
      qml: correct detached playlist window positioning · b25d23b7
      Fatih Uzunoğlu authored and Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf committed
      mainInterface.minimumHeight is no longer available,
      therefore use topWindow to retrieve minimum height.
      b25d23b7
    • Romain Vimont's avatar
      opengl: simplify generated GLSL code · 606648f4
      Romain Vimont authored and Romain Vimont's avatar Romain Vimont committed
      Now that TexCoordsMap is the same for all planes, initializing the pixel
      vec4 in several steps is not necessary anymore.
      
      Concretely, replace:
      
          vec4 texel;
          vec4 pixel = vec4(0.0, 0.0, 0.0, 1.0);
          texel = texture2D(Textures[0], tex_coords);
          pixel[0] = texel.r;
          texel = texture2D(Textures[1], tex_coords);
          pixel[1] = texel.r;
          texel = texture2D(Textures[2], tex_coords);
          pixel[2] = texel.r;
      
      by:
      
          vec4 pixel = vec4(
           texture2D(Textures[0], tex_coords).r,
           texture2D(Textures[1], tex_coords).r,
           texture2D(Textures[2], tex_coords).r,
           1.0);
      606648f4
Loading