search for: cell_co

Displaying 1 result from an estimated 1 matches for "cell_co".

2019 Jul 25
9
[Bug 111218] New: Segmentation fault in nv50_ir::NVC0LegalizeSSA::handleDIV when dividing result of textureSize
...Source of small program and somewhat minimized shaders Hi! I was looking into a crash[1] in latest version of Blender, which turned out to be a crash in the Nouveau shader code generator. The crash occurs when linking shaders. I traced the crash to the following lines in the shader code: ivec2 cell_co = ivec2(3, 2); int cell_per_row = textureSize(irradianceGrid, 0).x / cell_co.x; cell_co.x *= cell % cell_per_row; cell_co.y *= cell / cell_per_row; The crash seems to occur when the result of dividing textureSize() value is later used in division or modulo operations. Replacing the textureSi...