search for: num_vertices

Displaying 7 results from an estimated 7 matches for "num_vertices".

2015 May 24
2
[Mesa-dev] [PATCH 07/11] glsl: Add arb_cull_distance support
...ct gl_shader_program *prog, > - struct gl_shader *shader) > + struct gl_shader *shader, struct gl_context *ctx) > { > if (shader == NULL) > return; > @@ -625,8 +670,8 @@ validate_geometry_shader_executable(struct gl_shader_program *prog, > unsigned num_vertices = vertices_per_prim(prog->Geom.InputType); > prog->Geom.VerticesIn = num_vertices; > > - analyze_clip_usage(prog, shader, &prog->Geom.UsesClipDistance, > - &prog->Geom.ClipDistanceArraySize); > + analyze_clip_cull_usage(prog, shader,...
2007 Nov 30
1
[Bug 13466] New: AOL Video - assertion failure in cairo
...rash when playing video from http://us.video.aol.com/publish/players/mpp-20071106-114111-a12/files/mpp-20071106-114111-a12-tpm.swf Originally found on http://video.aol.com/video/comedy-funny-cat/2018555 lt-swfplay: cairo-pen.c:324: _cairo_pen_find_active_cw_vertex_index: Assertion `i < pen->num_vertices' failed. Aborted (core dumped) cairo-1.4.10-2.fc8 Current swfdec -- Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. You are the assignee for the bu...
2008 Feb 02
1
[Bug 14338] New: Firefox crash when viewing this flash
...property name with value "plugin" Loading stream: http://www.circuit-fantasia.com/collections/circuit-collection/menus/circuit-contents.swf unhandled event 19 firefox-bin: /build/buildd/libcairo-1.4.10/src/cairo-pen.c:324: _cairo_pen_find_active_cw_vertex_index: Assertion `i < pen->num_vertices' failed. Program received signal SIGABRT, Aborted. [Switching to Thread -1222121792 (LWP 13600)] 0xffffe410 in __kernel_vsyscall () (gdb) bt #0 0xffffe410 in __kernel_vsyscall () #1 0xb76aaf35 in raise () from /lib/tls/i686/cmov/libc.so.6 #2 0xb76ac8b1 in abort () from /lib/tls/i686/cmov/li...
2007 Nov 18
2
[Bug 13293] New: _cairo_pen_find_active_cw_vertex_index failed assertion
...nterpret.c(568): swfdec_player_get_movie_from_string: "_level100" does not reference a movie Loading stream: http://www.labottegadellabici.it/link.swf firefox-bin: /home/rm/swfdec/cairo/libcairo-1.4.10/src/cairo-pen.c:324: _cairo_pen_find_active_cw_vertex_index: Asserzione `i < pen->num_vertices' fallita. Program received signal SIGABRT, Aborted. ---Type <return> to continue, or q <return> to quit--- [Switching to Thread 0xb718f920 (LWP 8714)] 0xb73707d6 in raise () from /lib/libc.so.6 (gdb) bt #0 0xb73707d6 in raise () from /lib/libc.so.6 #1 0xb73720f1 in abort () from...
2001 Feb 05
1
wine with TransGaming patch doesn't compile
...d3ddevice/mesa.c: In function `GL_BuildColorArrays': d3ddevice/mesa.c:2718: `vt' undeclared (first use in this function) d3ddevice/mesa.c:2719: `odev' undeclared (first use in this function) d3ddevice/mesa.c:2729: `sd' undeclared (first use in this function) d3ddevice/mesa.c:2736: `num_vertices' undeclared (first use in this function) d3ddevice/mesa.c:2788: warning: control reaches end of non-void function d3ddevice/mesa.c: At top level: d3ddevice/mesa.c:2790: parse error before `*' d3ddevice/mesa.c: In function `GL_SetupColorArrays': d3ddevice/mesa.c:2797: `vt' undeclared...
2013 Jan 11
2
[Bug 59242] New: some mesa demos start to segfault after "nouveau: improve buffer transfers" on nv43
...(pipe=0x805cc70, info=0xbfffef10) at nv30_vbo.c:563 push = 0x8078938 #9 0xb69a4fb3 in u_vbuf_draw_vbo (mgr=0x81144e8, info=info at entry=0xbfffef10) at util/u_vbuf.c:1128 pipe = 0x805cc70 start_vertex = <optimized out> min_index = <optimized out> num_vertices = <optimized out> unroll_indices = 0 '\000' used_vb_mask = <optimized out> user_vb_mask = 0 incompatible_vb_mask = 0 #10 0xb6951e8a in cso_draw_vbo (cso=0x8113d30, info=info at entry=0xbfffef10) at cso_cache/cso_context.c:1344 vbuf = <o...
2015 May 24
19
[RFC PATCH 00/11] Implement ARB_cull_distance
This patch series adds the needed support for this extension to the various parts of mesa to finally enable it for nvc0. Dave Airlie (1): glsl: lower cull_distance into cull_distance_mesa Tobias Klausmann (10): glapi: add GL_ARB_cull_distance mesa/main: add support for GL_ARB_cull_distance mesa/prog: Add varyings for arb_cull_distance mesa/st: add support for GL_ARB_cull_distance