
- picasso now accepts several input files, which are each compiled into DVLE objects inside the .shbin - Uniform allocation is shared amongst all DVLEs. - Constant allocation is private to each DVLE. - Header file generation is temporarily disabled. - New directives: .nodvle Disables the generation of a DVLE object for the current input file. This allows sharing code amongst shaders. .entry entryName Specifies the name of the entrypoint procedure of the current DVLE. By default it's 'main'.
18 lines
372 B
Plaintext
18 lines
372 B
Plaintext
# -*- Autoconf -*-
|
|
# Process this file with autoconf to produce a configure script.
|
|
|
|
AC_PREREQ(2.61)
|
|
AC_INIT([picasso],[2.0.0],[fincs.alt1@gmail.com])
|
|
AC_CONFIG_SRCDIR([source/picasso_frontend.cpp])
|
|
|
|
AM_INIT_AUTOMAKE([1.10])
|
|
|
|
AC_CANONICAL_BUILD
|
|
AC_CANONICAL_HOST
|
|
|
|
AC_PROG_CC
|
|
AC_PROG_CXX
|
|
|
|
AC_CONFIG_FILES([Makefile])
|
|
AC_OUTPUT
|