Commit graph

34434 commits

Author SHA1 Message Date
Marek Olšák
af87ef10dc r300g: remove unused r300_query::active 2010-05-15 19:39:57 +02:00
Marek Olšák
251fae69e5 r300g: fix BO space accounting for occlusion queries 2010-05-15 19:39:57 +02:00
Marek Olšák
00704370e4 r300g: forbid overlapping queries and print error messages 2010-05-15 19:39:11 +02:00
Marek Olšák
16690366e6 r300g: rename a few emit_query functions 2010-05-15 19:38:28 +02:00
Marek Olšák
6c3afad62b r300g: silence warnings 2010-05-15 19:33:39 +02:00
Vinson Lee
6440dcea21 llvmpipe: Remove unnecessary headers. 2010-05-15 08:38:00 -07:00
José Fonseca
55b5806e36 util: Remove unused cruft. 2010-05-15 11:52:03 +01:00
José Fonseca
8a3bcba12c llvmpipe: Use GALLIVM_DEBUG opt where applicable. 2010-05-15 11:48:39 +01:00
José Fonseca
e7c0b4de17 draw: Use GALLIVM_DEBUG opt. 2010-05-15 11:43:16 +01:00
José Fonseca
145fd48b37 gallivm: Centralize some of the LLVM debugging options. 2010-05-15 11:42:02 +01:00
José Fonseca
263e038431 gallivm: Temporarily remove function call support
Commits moved to the gallivm-call feature branch for further
experimentation and stabilization.
2010-05-15 11:31:10 +01:00
Zack Rusin
af75bb4c98 gallivm: use our util_snprintf 2010-05-15 01:24:00 -04:00
Zack Rusin
7458928370 gallivm: implement function calls 2010-05-15 00:58:57 -04:00
Zack Rusin
b93fa7e2e8 vpglsl: add some simple tests with function calls 2010-05-15 00:58:43 -04:00
Eric Anholt
4e84dc8729 i965: Set the correct provoking vertex for clipped first-mode trifans.
Bug #24470: glean clipFlat test.
2010-05-14 15:37:24 -07:00
Brian Paul
18ed479119 gallivm: added some vector length sanity checks 2010-05-14 13:23:41 -06:00
Brian Paul
11b7c4b1ac gallivm: added lp_sizeof_llvm_type() 2010-05-14 13:23:41 -06:00
Brian Paul
9a0ff95425 gallivm: comments, const qualifiers 2010-05-14 13:23:41 -06:00
Brian Paul
85c6799f6e tgsi: clean up in emit_fetch() 2010-05-14 13:23:41 -06:00
Brian Paul
16f8df893c mesa: more info in glUniform error messages 2010-05-14 13:23:41 -06:00
Brian Paul
e22e65d223 mesa: silence void * / func * conversion warnings 2010-05-14 13:23:41 -06:00
Brian Paul
d1f76b1d85 tgsi: add a dummy function to silence warning 2010-05-14 13:23:41 -06:00
Brian Paul
48d3988b82 mesa: enum bitfields are a gcc-only feature, use GLubyte 2010-05-14 13:23:41 -06:00
Kristian Høgsberg
5dc0f49084 egl: Implement EGL_NOK_texture_from_pixmap
This extension allows a color buffer to be used for both rendering and
texturing.  EGL allows the use of color buffers of pbuffer drawables
for texturing, this extension extends this to allow the use of color
buffers of pixmaps too.
2010-05-14 14:47:54 -04:00
Kristian Høgsberg
554e4fc26a egl: Only allow valid config attributes in _eglParseConfigAttribList()
Passing 0x3030, 0 in the chooser list didn't get caught.
2010-05-14 14:47:54 -04:00
Eric Anholt
c1423e34f9 i965: Add program dumping for INTEL_DEBUG=gs. 2010-05-14 11:27:59 -07:00
Eric Anholt
1c25353bc6 i965: Parse the ff_sync URB send opcode on Ironlake disasm. 2010-05-14 11:27:59 -07:00
Eric Anholt
f5bd48cf67 i965: Use R16G16B16A16_FLOAT for 3-component half-float.
The RGBX version isn't supported as a vertex input type, but since we
force the last channel's value anyway, this should be fine.  The only
potential risk I see is in the limiter on VBO reads past the end of
the buffer forcing the whole vertex to 0 when the A channel lands past
the end.

Fixes piglit draw-vertices-half-float.
2010-05-14 11:27:59 -07:00
Eric Anholt
36eda76fea i965: Dump out the correct shared function for SEND on Ironlake. 2010-05-14 11:27:59 -07:00
Eric Anholt
562e2d114e i965: Support INTEL_DEBUG=clip to dump the clip program. 2010-05-14 11:27:59 -07:00
Eric Anholt
7554b83a21 intel: Handle arbitrary compressed formats in intel_compressed_num_bytes.
Note that we don't support arbitrary block size for compressed quite
yet -- block height of 4 is hard-coded all over the place.

Bug #27098 (srgb dxt1 producing a bytes per pixel of 0).
2010-05-14 11:27:59 -07:00
Marek Olšák
07ff65925f gallium: remove forward declarations of non-existent objects 2010-05-14 19:00:56 +02:00
Marek Olšák
93c997a914 r300g: do not abort if a constant buffer is too large
What else can we do with misbehaving apps?
2010-05-14 19:00:55 +02:00
Marek Olšák
fc11653c2b r300g: add framebuffer state debug logging 2010-05-14 19:00:55 +02:00
Marek Olšák
5a397d8e9f r300g: sort out debug flags 2010-05-14 19:00:55 +02:00
Brian Paul
e6a7ee7fbb egl: remove duplicate ARRAY_SIZE() macro declaration 2010-05-14 10:55:19 -06:00
Brian Paul
ffae54ec15 glxinfo: add queries and reporting for float and sRGB buffer types
Check for the GLX_ARB_fbconfig_float and GLX_NV_float_buffer extensions
to determine if color bufs are floating point.

Check for the GLX_EXT_framebuffer_sRGB extension to determine if the
framebuffer is sRGB capable.

Increase field size for some attribs (visual ID and buffer size) to
accomodate today's larger values.

Also print missing caveats info in verbose mode.
2010-05-14 10:55:19 -06:00
Patrice Mandin
33c08202a1 nouveau/nvfx: Define some capabilities for shaders
Signed-off-by: Patrice Mandin <patmandin@gmail.com>
2010-05-14 18:53:05 +02:00
Vinson Lee
12297f1f98 egl: Silence uninitialized variable warnings. 2010-05-14 08:59:42 -07:00
Brian Paul
1fbb50b740 mesa: print enum name instead of hexadecimal value in glGet errors 2010-05-14 08:25:25 -06:00
Brian Paul
39c13a115e mesa: another transform feedback error check, 80-col wrapping 2010-05-14 08:17:02 -06:00
Alex Kozlov
34c20fd4f5 mesa: fpclassify dummy definition is not needed on FreeBSD. 2010-05-14 06:16:14 -07:00
Keith Whitwell
fc4d1b9ba9 util: fix copy_rect stride in default transfer_inline_write 2010-05-14 12:19:28 +01:00
Kristian Høgsberg
52c554a79d egl: Implement EGL_NOK_swap_region
This extension adds a new function which provides an alternative to
eglSwapBuffers. eglSwapBuffersRegionNOK accepts two new parameters in
addition to those in eglSwapBuffers. The new parameters consist of a
pointer to a list of 4-integer blocks defining rectangles (x, y,
width, height) and an integer specifying the number of rectangles in
the list.
2010-05-13 20:30:45 -04:00
Marek Olšák
13ef7a4be8 r300g: fix for piglit/fp-indirections2 2010-05-14 00:27:52 +02:00
Brian Paul
f667526016 rtasm: fix void * / func * casting warnings 2010-05-13 14:15:44 -06:00
Brian Paul
56da0cb7ac draw: silence casting warnings 2010-05-13 14:15:44 -06:00
Brian Paul
415c40735d gallivm: silence uninitialized var warning 2010-05-13 14:15:44 -06:00
Brian Paul
d9096926f8 llvmpipe: silence casting warnings 2010-05-13 14:15:44 -06:00
Brian Paul
17542c1e3e gallivm: silence casting warning 2010-05-13 14:15:44 -06:00