Vinson Lee
|
51dcea2aac
|
util: Ensure debug_dump_flags generates a null-terminated string.
|
16 年之前 |
Vinson Lee
|
2ea061509d
|
st/xorg: Use C-style comments.
|
16 年之前 |
Vinson Lee
|
15ecd0337e
|
st/vega: Move declaration outside for loop.
|
16 年之前 |
Vinson Lee
|
1b0ab3e3c9
|
st/egl: Use C-style comments.
|
16 年之前 |
Vinson Lee
|
6c8c1ce78b
|
glx: Add XF86DRI[Open|Close]FullScreen prototypes to xf86dri.h.
|
16 年之前 |
Vinson Lee
|
cf3bb0cf31
|
glx: Move declaration outside for loop.
|
16 年之前 |
Tom Fogal
|
f42c861f02
|
Regenerate gl_mangle.h.
Signed-off-by: Brian Paul <brianp@vmware.com>
|
16 年之前 |
José Fonseca
|
b5a408bae5
|
llvmpipe: Install unit tests on build/xxx/bin
|
16 年之前 |
José Fonseca
|
88b2d8f796
|
util: Define common dynamic library extensions.
|
16 年之前 |
Maarten Maathuis
|
8e8502bc63
|
gallium: only create pipe buffer when size is nonzero
- This fixes a crash upon starting spring (a rts engine/game).
Signed-off-by: Maarten Maathuis <madman2003@gmail.com>
|
16 年之前 |
Keith Whitwell
|
b2a615e3cd
|
glsl/pp: move static functions out of header file
|
16 年之前 |
Keith Whitwell
|
cdd25ab8cf
|
glsl/pp: quieten compiler about missing case statements
|
16 年之前 |
Tomas Carnecky
|
cc7a2d8e64
|
i965g: Rename {pf->util_format}_is_depth_or_stencil()
|
16 年之前 |
Roland Scheidegger
|
faae0e5da3
|
rbug: rename pf_is_compressed to util_format_is_compressed
|
16 年之前 |
Tomas Carnecky
|
315ca95666
|
[i965] Rename {pf -> util}_format_is_depth_or_stencil()
The function was moved and renamed in 0bed834b.
Signed-off-by: Tomas Carnecky <tom@dbservice.com>
|
16 年之前 |
Vinson Lee
|
0f6cbc55b7
|
progs/tests: Fix build.
(cherry picked from commit 1bf2d78b11)
|
16 年之前 |
Vinson Lee
|
57b5ca5d11
|
glu/sgi: Silence uninitialized variable warnings.
|
16 年之前 |
Vinson Lee
|
19a40524d3
|
Add gallium to darwin config.
|
16 年之前 |
Vinson Lee
|
aae32df718
|
xlib: Use C-style comments.
|
16 年之前 |
Vinson Lee
|
b20382d477
|
trace: Silence uninitialized variable warnings.
|
16 年之前 |
Vinson Lee
|
f6ca26e5a7
|
trace: Add PIPE_OS_APPLE.
|
16 年之前 |
Vinson Lee
|
6ce28a755c
|
gallium/util: Add PIPE_OS_APPLE to u_stream_stdc.c.
|
16 年之前 |
Vinson Lee
|
5e73bcb396
|
gallium/util: Add PIPE_OS_APPLE to u_network.
|
16 年之前 |
Vinson Lee
|
fb8bff341e
|
i915g: Use C-style comment.
|
16 年之前 |
Vinson Lee
|
cf02484fb6
|
glx: Compile dri2.c only if GLX_DIRECT_RENDERING is defined.
|
16 年之前 |
Vinson Lee
|
c1033299e8
|
ffb: Silence compiler warnings.
|
16 年之前 |
Eric Anholt
|
f677480389
|
intel: Replace some gen3 IS_* checks with context structure usage.
Shaves 400 bytes or so from i915_dri.so.
|
16 年之前 |
Eric Anholt
|
cb3810dd19
|
intel: Replace IS_965 checks with context structure usage.
Saves another 600 bytes or so of code.
|
16 年之前 |
Eric Anholt
|
0b87f143c4
|
intel: Replace IS_G4X() across the driver with context structure usage.
Saves ~2KB of code.
|
16 年之前 |
Eric Anholt
|
1c96e85c9d
|
intel: Replace IS_IGDNG checks with intel->is_ironlake or needs_ff_sync.
Saves ~480 bytes of code.
|
16 年之前 |
Eric Anholt
|
b08ed4f595
|
mesa: Fix a NULL deref in glDeleteFragmentShaderATI(badname);
Fixes piglit ati-fs-bad-delete. Caught by clang.
|
16 年之前 |
Eric Anholt
|
fbeceec97b
|
mesa: remove unnecessary store.
|
16 年之前 |
Eric Anholt
|
6260d4a14c
|
mesa: Remove an unnecessary store reported by clang.
This was a workaround for a compiler warning that was showing a real
error. The real error was later fixed.
|
16 年之前 |
Eric Anholt
|
d85a6f70eb
|
intel: Fix leakage of active texture state in glBitmap fp metaops.
Noticed by clang.
|
16 年之前 |
Eric Anholt
|
e3202a8cc7
|
i915: Fix use of uninitialized variable in OPCODE_NOISE stub.
We don't actually care which register is used since we're just
swizzling (0,0,0,0), but it should be a valid variable number.
Detected by clang.
|
16 年之前 |
Eric Anholt
|
d203dbc73d
|
mesa: Replace CLAMP_SELF() macro with more obvious CLAMP() usage.
The same code is generated, and readers and static analyzers are
happier.
|
16 年之前 |
Eric Anholt
|
5727147f89
|
intel: Remove unused stored values reported by clang.
|
16 年之前 |
Eric Anholt
|
1a80fe461e
|
mesa: Remove _mesa_exit wrapper for exit().
It does nothing else while being less useful than exit() because it lacks
attributes that real exit() has.
|
16 年之前 |
Brian Paul
|
ddd9729bc3
|
mesa: adjust OPCODE_IF/ELSE BranchTarget fields to point to ELSE/ENDIF instr.
This is a little more logical. Suggested in bug report 25654.
|
16 年之前 |
Brian Paul
|
db721151b7
|
mesa: adjust BRK/CONT BranchTarget to always point to ENDLOOP instruction
To be more consistant.
|
16 年之前 |
Brian Paul
|
e8ea2d26cd
|
mesa: added some assertions in BNGLOOP/ENDLOOP cases
|
16 年之前 |
Brian Paul
|
b5ddc7821a
|
mesa: fix binary() function, printf format string
Need to use the constant 1ULL and 0xllx format string. This fixes incorrect
results and a NULL pointer/parameter bug.
|
16 年之前 |
Roland Scheidegger
|
d186079520
|
i965g: fix for edgeflag changes (untested)
|
16 年之前 |
Roland Scheidegger
|
35e8283c69
|
Merge branch 'gallium-edgeflags'
Conflicts:
src/mesa/state_tracker/st_draw.c
|
16 年之前 |
José Fonseca
|
00b463fc30
|
scons: Set the default windows platform to be windows userspace.
I thought I had done this ages ago.
|
16 年之前 |
Michal Krol
|
79bb3da4d3
|
tgsi: Implement BREAKC in interpreter.
|
16 年之前 |
Keith Whitwell
|
f069e45750
|
i965g: fix bo_reference
|
16 年之前 |
Keith Whitwell
|
96d63ebbf5
|
i965g: update for u_format changes
|
16 年之前 |
Keith Whitwell
|
aa02683e45
|
Merge branch 'i965g-restart'
Conflicts:
configure.ac
|
16 年之前 |
Christoph Bumiller
|
ebbc73d1ae
|
nv50: correct the negation of DDY sources
The state tracker now does the correct thing, so
interpret negation normally.
|
16 年之前 |