| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|\
| |
| |
| |
| |
| |
| | |
Conflicts:
src/glx/dri2_glx.c
src/glx/glx_pbuffer.c
|
| | |
|
| |
| |
| |
| | |
The gl entrypoints are in libOSMesa.so
|
| | |
|
| |
| |
| |
| |
| | |
Make sure eglut is built before the demos. This should work more
reliably with make -j<N>.
|
| | |
|
|\|
| |
| |
| |
| |
| | |
Conflicts:
src/mesa/state_tracker/st_format.c
|
| |
| |
| |
| | |
Signed-off-by: Brian Paul <[email protected]>
|
| |
| |
| |
| |
| |
| |
| |
| | |
eglplatform.h pulls in Xlib.h on X11 platforms. Likewise, the egl glx
driver and egl programs needs to link to libX11. Make sure we use the
locations the user told us about.
Signed-off-by: Dan Nicholson <[email protected]>
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
The variable X_LIBS from AC_PATH_XTRA contains only the -L searchdir
parameter and not the -lX11 to link to Xlib. Use X11 prefixed build vars
for linking with Xlib to avoid the conflict.
Signed-off-by: Dan Nicholson <[email protected]>
(cherry picked from commit e725ef171b5a4d5425461f237d9ccab223806913)
|
| |
| |
| |
| |
| |
| | |
Signed-off-by: Jeff Smith <[email protected]>
Signed-off-by: Dan Nicholson <[email protected]>
(cherry picked from commit 8d86d395dcf6a5f192b6987485bb7aef49f1fefc)
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| |
| | |
Commit 88be2171e7 fixed the egl demos on the stable branch, but now
they're spread out across multiple subdirectories.
Signed-off-by: Dan Nicholson <[email protected]>
|
| | |
|
| | |
|
| |
| |
| |
| | |
Based on the zreaddraw.c test.
|
| | |
|
| |
| |
| |
| |
| |
| |
| | |
Two reasons:
- progs will eventually have its own repository
- it is just to easy to forget updating the
code for interface changes when it is outside of src
|
| |
| |
| |
| | |
Untested -- just the same changes done to progs/gallium/python.
|
| |
| |
| |
| | |
Not enough for retrace to work again though.
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| | |
Update the warranty disclaimer to use the more general "THE AUTHORS OR
COPYRIGHT HOLDERS". This is done manually on files created by me. Hope
that I do not miss anything.
|
|\| |
|
| | |
|
| |
| |
| |
| |
| | |
Note the tests don't test all the paths, in particular stride, and
ensuring the old value is preserved.
|
| | |
|
| |
| |
| |
| |
| |
| |
| | |
Depth-stencil manually written given that each one is very close to
be a special case.
u_format_zs.c's still untested.
|
| | |
|
| |
| |
| |
| | |
Unnecessary, and doesn't even guarantee size.
|
| | |
|
| |
| |
| |
| |
| | |
The hack was added because GL_OES_EGL_image was not exported in the
extension string.
|
| |
| |
| |
| | |
EGL requires eglSwapBuffers to be called on the current surface.
|
| |
| |
| |
| |
| | |
This brings the demos also to KMS and removes about 400 duplicated lines
of code.
|
| |
| |
| |
| | |
Fixes Mac OS X SCons build.
|
|\| |
|
| |
| |
| |
| |
| |
| | |
This helps debugging on darwin.
Signed-off-by: Jeremy Huddleston <[email protected]>
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This reverts commit 9aadc793f3db64cefa0b08f18abad424a659dacc.
This reverts commit 69ea4e7718efb60b6b0d795a355cebd6712ceac1.
This reverts commit dbe8b013936d977ec63d6607bfd2fc6772d29787.
This reverts commit 23215ef4d60a86d9f3b3fdc08e3fdadc59e98890.
This reverts commit 9495e3703062d1ddaf3161f4efc23f0b51284d9b.
This reverts commit 0594cf70883b64692ba617d85f4f9b4e636e5c2b.
This reverts commit 86a7978d37393ee34f876569ac06ffdb8d7289ae.
This reverts commit 437902ce978cde9a0e1aa260f12dc232a8501c42.
|
| |
| |
| |
| |
| |
| | |
This helps debugging on darwin.
Signed-off-by: Jeremy Huddleston <[email protected]>
|
| |
| |
| |
| | |
Signed-off-by: Jeremy Huddleston <[email protected]>
|
| |
| |
| |
| |
| | |
The demo uses a Pixmap as its drawing area, and whatever is drawn on the
pixmap will be used as a texture to draw a cube.
|
| |
| |
| |
| |
| |
| |
| | |
support.
Not all is bad, but I'm afraid I'll have to throw the baby with the water
given they are all tied to together.
|
| | |
|
| | |
|
| |
| |
| |
| | |
Fixes SCons build.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Putting calls to util_format_init all over the codebase is infeasible.
Instead, half float tables are pregenerated, and the s3tc library is
loaded on demand.
I believe this is a solution that combines performance, cleanliness,
flexibility and portability.
|
| |
| |
| |
| |
| | |
This improves the code by making it more readable, and removes
special knowledge of S3TC and other formats from softpipe.
|