Patrice Mandin
f59d59a95f
nouveau: compilation fixes
18 years ago
Oliver McFadden
47f08a9fb5
r300: Corrected a bug with the SUB instruction.
18 years ago
Oliver McFadden
e239871d5b
r300: Corrected a bug with the MAD instruction.
The PVS_VECTOR_OPCODE macro should be modified to support macro instructions,
too.
18 years ago
Oliver McFadden
c30cc5904d
r300: Added the PVS_SRC_OPERAND documentation from AMD.
18 years ago
Oliver McFadden
3129d8b512
r300: Added the PVS_OP_DST_OPERAND documentation from AMD.
18 years ago
Oliver McFadden
9a3d4b14e9
r300: Added a TODO comment for registers missing from AMD's documentation.
18 years ago
Oliver McFadden
916a53088e
r300: Moved the vertex program shift/mask defines into the appropriate file.
18 years ago
Oliver McFadden
038e13b1ee
r300: Indented the vertex program code with longer lines.
18 years ago
Oliver McFadden
5dcbdc09f3
r300: Moved the PREFER_DP4 define near the position invariant function.
18 years ago
Oliver McFadden
bbab0f97b8
r300: Added a TODO comment for the MAD opcodes.
18 years ago
Oliver McFadden
2a8b6c62a7
r300: Use the VE_ADD hardware opcode for the SUB opcode.
18 years ago
Oliver McFadden
a6d772ed16
r300: Use the VE_MULTIPLY hardware opcode for the MUL opcode.
18 years ago
Oliver McFadden
f80223d9ff
r300: Cleaned up the XPD opcode temporary register usage.
18 years ago
Oliver McFadden
b795e8db5f
r300: Cleaned up extra white space.
18 years ago
Oliver McFadden
dda906fcdb
r300: Prefer to use the VE_ADD for simple MOV style opcodes.
The VE_MULTIPLY_ADD has further restrictions on reading temporary memory which
may complicate things. See AMD's documentation.
18 years ago
Oliver McFadden
7504981074
r300: Removed the (undocumented) MAD_2 opcode.
This opcode is likely a mistake from reverse engineering. MAD_2 isn't included
in AMD's documentation, and my testing reviles there is no problem using the
documented MAD opcode.
18 years ago
Oliver McFadden
7e1878cdad
r300: Cleaned up the MAD/MAD_2 opcode selection.
18 years ago
Oliver McFadden
bb4188b85b
r300: Renamed some misleading macro arguments.
18 years ago
Oliver McFadden
fb0947ed33
r300: Cleaned up the vertex program macros.
18 years ago
Oliver McFadden
e3a0a8dc7d
r300: Removed duplicate component selection defines.
18 years ago
Oliver McFadden
2fdd6d87f4
r300: Removed duplicate source register class defines.
18 years ago
Oliver McFadden
95604e88e7
r300: Renamed the vertex program source register macro.
18 years ago
Oliver McFadden
9c74291197
r300: Removed the (obsolete) special source register macros.
18 years ago
Oliver McFadden
440a6fbf6e
r300: Cleaned up the special vertex program source register macros.
18 years ago
Oliver McFadden
8c4d811295
r300: Added the vertex program swizzle (aka selection) defines.
18 years ago
Oliver McFadden
b2c02a4a7c
r300: Converted to the new src/dest register defines.
18 years ago
Oliver McFadden
b0e81fd19e
r300: Removed an obsolete comment from the vertex program header file.
18 years ago
Oliver McFadden
41c3ae5778
r300: Converted to the new Math Engine defines.
18 years ago
Oliver McFadden
0ced26099d
r300: Added the Math Engine opcode macro.
18 years ago
Oliver McFadden
7c4add02f8
r300: Renamed the Vector Engine opcode macro.
18 years ago
Oliver McFadden
bd46a482c4
r300: Converted to the new Vector Engine defines.
18 years ago
Oliver McFadden
66952fa5ae
r300: Removed the duplicate dest register defines.
18 years ago
Oliver McFadden
8a646b80ef
r300: Removed the duplicate "easy" vertex program macros.
18 years ago
Oliver McFadden
ea8299040f
r300: Added the vertex program src/dest register defines.
18 years ago
Oliver McFadden
bccb56d5f3
r300: Added the Vector Engine and Math Engine defines from AMD's documentation.
18 years ago
Oliver McFadden
e0a5194a54
r300: Moved the vertex and fragment program macros into the appropriate files.
18 years ago
Roland Scheidegger
642d5ee8c5
state.depth.range alpha value should be 1, not 0 (bug #14733)
18 years ago
Kristian Høgsberg
3c5a1e4c2d
Update libGL DRI loader to latest DRI interface changes.
18 years ago
Kristian Høgsberg
51cd168da4
glxgears: oops, remove accidental commit of glFinish() hack.
18 years ago
Kristian Høgsberg
6cb3f5c4d8
Use __DRIextension mechanism providing loader functionality to the driver.
Instead of passing in a fixed struct, the loader now passes in a list
of __DRIextension structs, to advertise the functionality it can provide
to the driver. Each extension is individually versioned and can be
extended or phased out as the interface develops.
18 years ago
Kristian Høgsberg
16242a8007
Reduce the versioning madness required to create a DRI2 screen.
Right now the DRI2 screen constructor takes 3 different versions:
DRI, DDX and DRM. This is mostly useless, though:
DRI: The DRI driver doesn't actually care about the DRI protocol,
it only talks to the loader, which in turn speaks DRI protocol. Thus,
the DRI protocol version is of not interest to the DRI driver, but it
needs to know what functionality the loader provides. At this point
that's reflected in the __DRIinterfaceMethods struct and the
internal_version integer.
DDX: The DDX version number is essentially used to track extensions
to the SAREA. With DRI2 the SAREA consists of a number of versioned,
self-describing blocks, so the DDX version is no longer interesting.
DRM: We have the fd, lets just ask the kernel ourselves.
18 years ago
Kristian Høgsberg
5197a31b8e
intel: Set the lock flag early to avoid deadlock.
Another regression from the intel_context.c merge.
18 years ago
Xiang, Haihao
de1e9880f8
i965: use _Current pointer instead of Current pointer.
fix double free issue(bug#14710). It also corrects glsl/bitmap demo behavior.
18 years ago
Eric Anholt
b39f15b88f
[965] Fix conditional sequencing to allow the frame_buffer_texobj case.
Previously the frame_buffer_texobj case would have been bound as a normal
texture, at best resulting in no surface data being associated with it.
18 years ago
Eric Anholt
ec5ca6844b
[intel] Bug #14575: Unmap buffers when deleting/dataing as required.
Otherwise, we would assertion error when doing the final unreference of the
buffer with an outstanding map (catching the memory leak).
18 years ago
Christoph Brill
981b7da8a7
r300: R5xx and R3xx use different registers for RS_IP and RS_INST
These changes are taken from the xf86-video-ati driver. They update the header
file accordingly and also remove some UNKOWN variables.
18 years ago
Eric Anholt
9c8f27ba13
[965] Bug #9151: make fragment.position return window coords not screen coords.
18 years ago
Eric Anholt
3f0301d7bc
[965] Fix serious copy'n'paste failure in brw state dumping.
18 years ago
Brian
ddbfa8c462
added git on Windows section
18 years ago
Brian
cef71f58c9
a few words about how the cell driver works.
18 years ago