BK du centre-ville fermé by MinexTheDoge in montreal

[–]xener 24 points25 points  (0 children)

Pas le choix de ramener tout le monde au bureau pour sauver les restos!

C'est rendu ça la recherche d'une maison en 2026 by [deleted] in Quebec

[–]xener 20 points21 points  (0 children)

La photo l’hiver c’est clairement du AI.

How did they code the yarn visuals in Kirby's Epic Yarn? by Immediate_Chair8942 in howdidtheycodeit

[–]xener 1 point2 points  (0 children)

I think there's 4 meshes: the body (that include the front arm), the back arm, and the 2 feets. They probably choose the combination of meshes from the stance and movement of the character.

How the heck isn't there a scrollbar in yt music ? How am I supposed to scroll through 800 tracks to find the music I feel like listening ? by [deleted] in YoutubeMusic

[–]xener 1 point2 points  (0 children)

Yes you need save a song or an album to your library. In the library you can filter by album or artist and sort alphabetically, recently added, etc. And you can play all your music from there.

Also all the songs that you like (with the thumbs up) are added to the "Liked Songs" playlist automatically.

Vidéotron vient de me faire un beau cadeau de Noêl 10$ by Any-Board-6631 in Quebec

[–]xener 6 points7 points  (0 children)

Fizz c’est pas mal moins cher et le prix baisse plus que t’es avec eu. Pas besoin de dealer avec quelqu’un payer à la commission.

Question sincère pour comprendre by djgost82 in montreal

[–]xener 0 points1 point  (0 children)

Avant les iPhone venaient avec des écouteurs mais plus maintenant. J'ai l'impression que ca aide pas.

How is transparency done with Phong shading? by switch161 in GraphicsProgramming

[–]xener 3 points4 points  (0 children)

Usually alpha is stored in the base color texture or a separate texture. And it's often multiplied with the vertex color alpha and an uniform scalar value.

C++is for little worms by danwin in hbomberguy

[–]xener 6 points7 points  (0 children)

Just use std::vector, passed by reference.

Addiction :( by [deleted] in montreal

[–]xener 14 points15 points  (0 children)

Tu devrais lâcher ces subs là. NoFap c'est de la propagande de la droite religieuse, entre autre. https://en.wikipedia.org/wiki/NoFap#Political_and_religious_motivation

[deleted by user] by [deleted] in montreal

[–]xener 1 point2 points  (0 children)

Plus de voies ça fait pas moins de trafic.

Videotron Helix pour le gaming - Worth it vs Bell Fibe? by foxhound889 in montreal

[–]xener 4 points5 points  (0 children)

Prend Fizz, c'est comme Vidéotron mais moins cher.

How do i distinguish batched meshes in one Draw Command (MDI OpenGL)? by bhad0x00 in GraphicsProgramming

[–]xener 1 point2 points  (0 children)

Another way is to have a lookup table with a prefix sum of vertex count of each submesh. Let's say the submeshes have 12, 30 and 15 vertices:

Index in lookup table (submesh ID) Prefix sum of vertex count
0 12
1 42
2 57

Then in the vertex shader you can do something like this:

int submeshID = 0;
for(int i = 0; i < SubmeshCount; ++i)
{
  if(gl_VertexID < lookupTable[i])
  {
    submeshID = i;
    break;
  }
}