summaryrefslogtreecommitdiffstats
path: root/progs/demos/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* demos: move demos/texobj.c to tests/Brian Paul2009-04-181-1/+0
|
* demos: move tests/dinoshade.c to demos/Brian Paul2009-04-181-0/+1
|
* demos: move tests/projtex.c to demos/Brian Paul2009-04-181-0/+1
| | | | And fix compiler warnings.
* demos: move tests/fbotexture.c to demos/Brian Paul2009-04-181-0/+1
|
* demos: move texdown.c to tests/Brian Paul2009-04-181-1/+0
|
* demos: move glutfx demo to tests/Brian Paul2009-04-181-1/+0
|
* demos: move streaming_rect.c demo to tests/Brian Paul2009-04-181-1/+0
|
* demos: move glslnoise.c demo to glsl/noise2.cBrian Paul2009-04-181-1/+0
|
* Merge commit 'origin/gallium-master-merge'Brian Paul2009-02-101-15/+16
|\ | | | | | | | | | | | | | | | | | | | | | | This is the big merge of the gallium-0.2 branch into master. gallium-master-merge was just the staging area for it. Both gallium-0.2 and gallium-master-merge are considered closed now. Conflicts: progs/demos/Makefile src/mesa/main/state.c src/mesa/main/texenvprogram.c
| * progs: Port most of the demos to glew.José Fonseca2009-01-241-4/+4
| | | | | | | | | | A couple of test weren't ported due to glew breakage -- it undefines GLAPIENTRY.
| * mesa: simple multiple textures testBrian Paul2008-10-091-0/+1
| |
| * demos: fix LIBS ref in makefileKeith Whitwell2008-09-111-1/+1
| |
| * Merge commit 'origin/gallium-0.1' into gallium-0.2Keith Whitwell2008-09-111-14/+14
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: Makefile progs/demos/Makefile progs/glsl/Makefile progs/redbook/Makefile progs/samples/Makefile progs/tests/Makefile progs/trivial/Makefile progs/xdemos/Makefile src/gallium/Makefile src/mesa/main/attrib.c src/mesa/main/bufferobj.c src/mesa/vbo/vbo_exec_draw.c
| | * define new APP_CC configuration variable for building apps/demos/testsBrian Paul2008-09-111-14/+14
| | | | | | | | | | | | | | | For Cell, need to use different compilers for the libraries vs. the demos/tests to avoid strange link error regarding "_Unwind_GetIPInfo@GCC_4.2.0"
| | * added ARCH_FLAGSseventh guardian2008-06-161-5/+5
| | |
* | | demos: remove OSMESA stuff from MakefileBrian2009-02-091-6/+0
|/ /
* | Always pass CFLAGS when compiling or linking demosGuillaume Melquiond2008-07-301-6/+6
| | | | | | | | | | To ensure that the correct architecture flags are used, always pass the user's CFLAGS when compiling or linking the demos. Fixes #16860.
* | Add new demo "fbo_firecube".Thomas Hellstrom2008-07-241-0/+1
| | | | | | | | Tests fbo render-to-texture for various internal texture image formats.
* | Don't link demos directly to X librariesDan Nicholson2008-05-091-2/+4
| | | | | | | | | | Since the linker will just pull in the libraries needed from libGL, we don't need to link the demos directly to the X libraries. Fixes #15886.
* | Only convert configs if screen creation was successful.Kristian Høgsberg2008-04-081-1/+1
| | | | | | | | Thanks to Adam Jackson for pointing it out.
* | Fix include path for rain demo so glut.h is foundDan Nicholson2008-03-111-2/+2
| |
* | Build rain demo (Gonzo <[email protected]>)Brian2007-12-141-1/+10
| |
* | specify app lib dependencies in Makefiles (patch 1/3)Dan Nicholson2007-10-291-7/+9
| |
* | add support for LDFLAGS env varDan Nicholson2007-09-281-6/+6
| |
* | added copypix.c test (test glCopyPixels w/ pixel zoom)Brian2007-09-141-0/+5
|/
* fix some dependencies, remove some CFLAGSBrian2007-04-081-5/+10
|
* Use extfuncs.h helper. Added command line options for loadingBrian2006-12-151-0/+7
| | | | vertex/fragment shaders from files.
* added fsligghtBrian Paul2006-11-031-0/+1
|
* merge the (rest of) texmem branchKeith Whitwell2006-11-011-0/+1
|
* LIB_DIR is now just 'lib' or 'lib64'Brian Paul2006-07-131-4/+4
| | | | | Replaced $(LIB_DIR) with $(TOP)/$(LIB_DIR), use LIB_DIR in install targets. Patch by Hanno Böck.
* New animated engine demo.Brian Paul2006-07-041-0/+8
|
* remove occlude.c demo since GL_HP_occlusion_test no longer availableBrian Paul2006-06-301-1/+0
|
* use trackball code for mouse rotationBrian Paul2006-06-261-0/+18
|
* Add support for GL_APPLE_vertex_array_object. Several test programsIan Romanick2006-06-121-0/+1
| | | | | | | and demos are also added. Adding basic support to drivers should be as easy as just enabling the extension, though thorough test would also be required.
* s/glslnose.c/glslnoise/ (bug 6430)Brian Paul2006-03-291-1/+1
|
* More GLSL code.Michal Krol2006-02-181-0/+1
| | | | | | - general constructors allowed; - implement noise functions (from Stefan Gustavson - thanks!) - cosmetic stuff.
* Demonstrate GLSL fragment and vertex shaders.Michal Krol2006-02-151-0/+1
|
* Test glCopyTexSubImage2D by drawing gears as texture on sides of a box.Brian Paul2006-01-281-0/+1
|
* Fix the default target to remake readtex.o if neededAdam Jackson2006-01-131-1/+2
|
* Removed the GL_SGIX/SGIS_pixel_texture extensions. Same thing can beBrian Paul2005-12-141-1/+0
| | | | done with fragment programs nowadays.
* Demo of how to do (nearly) flicker-free rendering with a single color buffer.Brian Paul2005-08-251-0/+1
|
* move osmesa demos to their own directoryKeith Whitwell2005-05-191-15/+0
|
* assorted warning clean-ups for x86_64, etc (Mikko T.)Brian Paul2005-05-071-1/+1
|
* added osmesa16 stuffBrian Paul2005-01-291-0/+6
|
* some new/improved rulesBrian Paul2005-01-091-11/+38
|
* addes osdemo32 target (J.P. Delport)Brian Paul2004-10-231-0/+7
|
* Build the fogcoord demo.Ian Romanick2004-05-271-0/+1
|
* minor fixesBrian Paul2004-03-261-1/+1
|
* Tweaks for make clean / realclean.Brian Paul2004-03-261-3/+0
|
* New Makefile systemBrian Paul2004-03-261-0/+92