| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
| |
they won't generate any useful conversion code for some of the new formats
but at least don't assert. Also needed some more hacks so they don't generate
code for some of the new formats, as gcc was not impressed.
Also declare unused channels as void, and change the scripts to not fail if
the first channel happened to be unused.
Needs serious fixing.
|
|
|
|
| |
only the depth part is normalized, stencil part isn't.
|
|
|
|
|
|
|
|
| |
These are needed for DX10 and/or OGL3.3.
This just adds the formats nothing handles them yet.
PIPE_FORMAT_R1_UNORM can't be used currently as it requires special filter.
Need to reclassify compressed formats at some point.
|
| |
|
| |
|
| |
|
|
|
|
| |
Want to see the results.
|
|
|
|
|
|
|
|
| |
Provides basic window system integration behind a simple interface,
allowing tests to be written without dependency on either the driver
or window system.
With a lot of work, could turn into something like glut for gallium.
|
|
|
|
|
| |
Not sure why we are open-coding these rather than using standard
library functions.
|
|
|
|
|
|
| |
Still problems at runtime with vertex elements, etc.
Building still disabled.
|
| |
|
| |
|
| |
|
|
|
|
| |
Feel free to check it and improve it if necessary.
|
| |
|
|
|
|
| |
Thanks to Nicolai Hähnle for explaining this register!
|
|
|
|
| |
We really need to get these into bug reports.
|
| |
|
| |
|
|
|
|
| |
This was missed in commit f7cbaae13d67c55abe81ac230de37f564365099f.
|
|
|
|
|
|
| |
ximage backend calls gallium_wrap_screen, which requires libidentity.a
and libtrace.a. There are also some missing symbols in i965 due to the
use of sw wrapper.
|
|
|
|
|
|
| |
FDO bug #27338.
Signed-off-by: Marek Olšák <[email protected]>
|
|
|
|
| |
Kind of surprised that this was as little as it took. Worrying.
|
| |
|
| |
|
|
|
|
|
| |
This was missed in commit 4b722bf9fde668dff1c2b55b34eb3f86c78f43fb.
dri_extensions.c was removed from Makefile but not from SConscript.
|
|
|
|
|
|
|
|
| |
So other directory can share it.
Also remove the libllvmpipe.a dependency from test
programs. It is not needed any more.
Signed-Off-By: Christopher Li <[email protected]>
|
| |
|
|
|
|
|
|
|
|
| |
This function should be put in targets/common or winsys/sw/common and shared
with targers/libgl-xlib and winsys/sw/drm.
For targets/common, you get layering violations in the build system unless
all of drm_api's are moved under targets.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
When building more then one dri driver we would get warnings because
we where defining the same build target multiple times.
Also move all the dri scons targets related code into its own file.
|
| |
|
|
|
|
|
|
|
|
| |
This reverts commit cba6430524198a1bdcdeada03cbe946a454f3935.
Breaks celestia with a hardlock. :T
We really need to sit down and study texture stuffing further.
|
|
|
|
| |
Fixes for instance noise with material shaders in FlightGear.
|
| |
|
| |
|
|
|
|
| |
Needed for i915g, also fixed swizzle in draw_vs_aos_io.
|
| |
|
|
|
|
| |
Since the winsys isn't shared with i965 and never will be
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
27 files changed, 15 insertions(+), 15 deletions(-)
rename src/gallium/state_trackers/dri/{ => common}/dri1_helper.c (100%)
rename src/gallium/state_trackers/dri/{ => common}/dri1_helper.h (100%)
rename src/gallium/state_trackers/dri/{ => common}/dri_context.c (100%)
rename src/gallium/state_trackers/dri/{ => common}/dri_context.h (100%)
rename src/gallium/state_trackers/dri/{ => common}/dri_drawable.c (100%)
rename src/gallium/state_trackers/dri/{ => common}/dri_drawable.h (100%)
rename src/gallium/state_trackers/dri/{ => common}/dri_extensions.c (100%)
rename src/gallium/state_trackers/dri/{ => common}/dri_screen.c (100%)
rename src/gallium/state_trackers/dri/{ => common}/dri_screen.h (100%)
rename src/gallium/state_trackers/dri/{ => common}/dri_st_api.c (100%)
rename src/gallium/state_trackers/dri/{ => common}/dri_st_api.h (100%)
rename src/gallium/state_trackers/dri/{ => common}/dri_wrapper.h (100%)
|
|
|
|
|
|
|
|
|
|
| |
In short:
git mv ../drisw/Makefile dri/sw
git mv drisw.[c|h] sw
git mv dri2.[c|h] dri1.[c|h] Makefile drm
git rm ../drisw
ln -s <common files> drm/*
ln -s <common files> sw/*
|
|
|
|
|
|
|
|
| |
This reverts commit a9063cad0f0190ff88cd20fbad5aa87bf1a943f6.
Not too surprisingly, this change caused some regressions.
Revert it for the time being.
See fd.o bug 27320.
|
|
|
|
|
|
| |
We shouldn't try to clear a non-existant z/stencil buffer, so there's
probably a bug elsewhere. Disable the assertion for now to allow things
to at least run.
|
| |
|
| |
|