mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-04 14:08:05 +02:00
Disable C++ shading language code yet again. Doesn't compile with older
g++ installations.
This commit is contained in:
parent
93b52d9484
commit
425569bbc5
2 changed files with 7 additions and 3 deletions
|
|
@ -1177,6 +1177,8 @@ _mesa_init_shaderobjects (GLcontext *ctx)
|
|||
{
|
||||
ctx->ShaderObjects.current_program = NULL;
|
||||
|
||||
#if 0 /* disable for now */
|
||||
_mesa_init_shaderobjects_3dlabs (ctx);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -149,8 +149,9 @@ SHADER_SOURCES = \
|
|||
shader/nvvertexec.c \
|
||||
shader/nvvertparse.c \
|
||||
shader/program.c \
|
||||
shader/shaderobjects.c \
|
||||
shader/shaderobjects_3dlabs.c
|
||||
shader/shaderobjects.c
|
||||
|
||||
# shader/shaderobjects_3dlabs.c
|
||||
|
||||
SLANG_SOURCES = \
|
||||
shader/slang/MachineIndependent/preprocessor/atom.c \
|
||||
|
|
@ -276,7 +277,8 @@ CORE_SOURCES = \
|
|||
|
||||
### Object files
|
||||
|
||||
CORE_OBJECTS = $(CORE_SOURCES:.c=.o) $(SLANG_CPP_SOURCES:.cpp=.o)
|
||||
#CORE_OBJECTS = $(CORE_SOURCES:.c=.o) $(SLANG_CPP_SOURCES:.cpp=.o)
|
||||
CORE_OBJECTS = $(CORE_SOURCES:.c=.o)
|
||||
|
||||
OSMESA_DRIVER_OBJECTS = $(OSMESA_DRIVER_SOURCES:.c=.o)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue