Displaying 7 results from an estimated 7 matches for "num_instructions".
2013 Aug 30
0
[Bug 46597] [NVA8/NV50 gallium] nv50_pc.h:351: nv_alloc_instruction: Assertion `pc->num_instructions < 2048' failed.
...-------------------------------------------------------------------
Summary|nv50_pc.h:351: |[NVA8/NV50 gallium]
|nv_alloc_instruction: |nv50_pc.h:351:
|Assertion |nv_alloc_instruction:
|`pc->num_instructions < |Assertion
|2048' failed. |`pc->num_instructions <
| |2048' failed.
--- Comment #1 from Ilia Mirkin <imirkin at alum.mit.edu> ---
Looks like you were using a pre-9.0 mesa release. Can you ch...
2012 Nov 16
0
[Bug 46597] nv50_pc.h:351: nv_alloc_instruction: Assertion `pc->num_instructions < 2048' failed.
https://bugs.freedesktop.org/show_bug.cgi?id=46597
Andreas Boll <andreas.boll.dev at gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Assignee|mesa-dev at lists.freedesktop. |nouveau at lists.freedesktop.o
|org |rg
2013 Oct 01
0
[Bug 46597] [NVA8/NV50 gallium] nv50_pc.h:351: nv_alloc_instruction: Assertion `pc->num_instructions < 2048' failed.
https://bugs.freedesktop.org/show_bug.cgi?id=46597
Ilia Mirkin <imirkin at alum.mit.edu> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution|--- |INVALID
--- Comment #2 from Ilia Mirkin <imirkin at
2012 Nov 19
7
[Bug 57278] New: [xf86-video-nouveau] flightgear crash when loading scenary
...g
png_read_image
PNG lib warning : Interlace handling should be turned on when using
png_read_image
Initializing Nasal Electrical System
join_values_nofail:398 - failed to coalesce values
join_values_nofail:398 - failed to coalesce values
fgfs: nv50_pc.h:351: nv_alloc_instruction: Assertion `pc->num_instructions <
2048' failed.
Aborted
Steps to reproduce:
1)install
2) run
3) loading scenery
4) CRASH
SEE view: https://bugs.archlinux.org/task/31362
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
U...
2014 Jun 23
1
[PATCH] nv50/ir: make ARB_viewport_array behave like it does with other drivers
...t vertex stream if specified (must be immediate)
src0 = tgsi.srcCount() ?
@@ -2952,6 +2972,9 @@ Converter::run()
mkOp1(OP_RCP, TYPE_F32, fragCoord[3], fragCoord[3]);
}
+ if (info->io.viewportID > 0)
+ viewport = getScratch();
+
for (ip = 0; ip < code->scan.num_instructions; ++ip) {
if (!handleInstruction(&code->insns[ip]))
return false;
--
1.8.4.5
2014 Jun 23
1
[PATCH v3] nv50/ir: make ARB_viewport_array behave like it does with other drivers
...be immediate)
src0 = tgsi.srcCount() ?
@@ -2952,6 +2974,11 @@ Converter::run()
mkOp1(OP_RCP, TYPE_F32, fragCoord[3], fragCoord[3]);
}
+ if (info->io.viewportId >= 0)
+ viewport = getScratch();
+ else
+ viewport = NULL;
+
for (ip = 0; ip < code->scan.num_instructions; ++ip) {
if (!handleInstruction(&code->insns[ip]))
return false;
--
1.8.4.5
2014 Jun 23
1
[PATCH v2] nv50/ir: make ARB_viewport_array behave like it does with other drivers
...(must be immediate)
src0 = tgsi.srcCount() ?
@@ -2952,6 +2974,10 @@ Converter::run()
mkOp1(OP_RCP, TYPE_F32, fragCoord[3], fragCoord[3]);
}
+ if (info->io.viewportId >= 0)
+ viewport = getScratch();
+ else viewport = NULL;
+
for (ip = 0; ip < code->scan.num_instructions; ++ip) {
if (!handleInstruction(&code->insns[ip]))
return false;
--
1.8.4.5