summaryrefslogtreecommitdiff
path: root/configure.ac
AgeCommit message (Collapse)AuthorFilesLines
2017-04-14common: use drmModeAddFB2* API over the legacy drmModeAddFB oneBen Widawsky1-1/+1
Note: nothing happens here yet since LINEAR == 0.
2017-04-13configure: Check for the GBM modifiersBen Widawsky1-0/+16
2017-04-05Fix GBM image formats v2Thomas Hellstrom1-1/+1
When the GBM BOs are created, they are created using a bo with a correct memory requirement but with an incorrect channel layout. This makes drivers that are picky about matching formats (svga/vmwgfx) complain. Use the correct GBM formats and require GBM >= 13.0 to make sure they are available. v2: Remove a couple of stale comments Signed-off-by: Thomas Hellstrom <thellstrom@vmware.com> Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
2017-03-27add video cubeRob Clark1-0/+9
Uses gstreamer for a simple decoder. If decoder can give us dma-buf's directly, we'll directly use that as a texture (zero copy), otherwise memcpy into a buffer from gbm. This should work with both hw and sw decoders. Probably room for improvement. And the interface between gl and the decoder is pretty simple so I suppose other decoders would be possible. (But hopefully they could already be supported via gstreamer.) Signed-off-by: Rob Clark <robdclark@gmail.com> Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com>
2017-03-15configure.ac: remove no-longer applicable m4 folderEmil Velikov1-1/+0
With the removal of libtool as of last commit we no longer need the m4 folder or any of the related infra. Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
2017-03-15configure.ac: remove unused AC_PROG_LIBTOOLEmil Velikov1-3/+2
We're creating a single binary with no static/shared libraries. We implicitly relied on the macro to pull AC_PROG_CC, so we should add it now, otherwise configure will fail. As a nice bonus, with the last three commits combined the execution time of autogen.sh drops by more than half. before after real 0m7.965s 0m3.661s user 0m4.530s 0m1.280s sys 0m0.280s 0m0.070s Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
2017-03-15configure.ac: remove useless AC_CONFIG_* macrosEmil Velikov1-2/+0
Namely: AC_CONFIG_SRCDIR - it's used to "help" people who deliberatelly override --srcdir. Nobody should be doing this to begin with, so just let them get what they're asking for. AC_CONFIG_HEADERS - we don't have any conditionals, function or macro checks. Hence we don't need the header. Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
2017-03-15configure.ac: wire -Wall -Wextra directly into the buildEmil Velikov1-38/+0
Both flags are widely available and the rest of MAYBE_WARN are of little interest. Since atm no flags were passed, we might as well not bother with anything but the former two. Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> --- This will prompt some warnings, but we can sort this at a later stage.
2017-03-13configure.ac: fix project urlEric Engestrom1-1/+1
As announced by Rob Clark [1], the project has moved to fd.o [1] https://lists.freedesktop.org/archives/mesa-dev/2017-February/145745.html Signed-off-by: Eric Engestrom <eric.engestrom@imgtec.com>
2017-03-13configure: Stop using AM_MAINTAINER_MODEEmil Velikov1-1/+0
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
2012-09-03initial commitRob Clark1-0/+87