mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 11:08:03 +02:00
demos: move glslnoise.c demo to glsl/noise2.c
This commit is contained in:
parent
927dc39de0
commit
118856641f
3 changed files with 8 additions and 1 deletions
|
|
@ -32,7 +32,6 @@ PROGS = \
|
|||
geartrain \
|
||||
glinfo \
|
||||
gloss \
|
||||
glslnoise \
|
||||
gltestperf \
|
||||
glutfx \
|
||||
isosurf \
|
||||
|
|
|
|||
|
|
@ -23,6 +23,7 @@ PROGS = \
|
|||
multinoise \
|
||||
multitex \
|
||||
noise \
|
||||
noise2 \
|
||||
points \
|
||||
pointcoord \
|
||||
samplers \
|
||||
|
|
@ -163,6 +164,13 @@ noise: noise.o shaderutil.o
|
|||
$(APP_CC) -I$(INCDIR) $(CFLAGS) $(LDFLAGS) noise.o shaderutil.o $(LIBS) -o $@
|
||||
|
||||
|
||||
noise2.o: noise2.c extfuncs.h shaderutil.h
|
||||
$(APP_CC) -c -I$(INCDIR) $(CFLAGS) noise2.c
|
||||
|
||||
noise2: noise2.o shaderutil.o
|
||||
$(APP_CC) -I$(INCDIR) $(CFLAGS) $(LDFLAGS) noise2.o shaderutil.o $(LIBS) -o $@
|
||||
|
||||
|
||||
points.o: points.c extfuncs.h shaderutil.h
|
||||
$(APP_CC) -c -I$(INCDIR) $(CFLAGS) points.c
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue