summaryrefslogtreecommitdiff
path: root/libkms++
AgeCommit message (Collapse)Author
2016-01-22Add definition to DRM_CLIENT_CAP_ATOMIC undef caseAlejandro Hernandez
This patch adds a missing DRM_MODE_ATOMIC_NONBLOCK definiton for cases were the kernel supports atomic modesetting but the libdrm version used does not. Without this patch a "'DRM_MODE_ATOMIC_NONBLOCK' was not declared in this scope" error is seen when trying compile the library Signed-off-by: Alejandro Hernandez <ajhernandez@ti.com>
2016-01-12libkms: fix Connector::get_default_mode when no modesTomi Valkeinen
2016-01-12libkms: add 'ilace' param for Connector::get_mode()Tomi Valkeinen
2016-01-12DumbFB: fix dumb buffer alloc for omap NV12Tomi Valkeinen
Dividing the bitspp with xsub works better than dividing the width, as otherwise the buffer stride will get aligned easily quite a bit. This is somewhat OMAP specific fix/work-around, but then, it's not clear how NV12 buffer sizes should be calculated anyway.
2015-11-26DumbFB: don't unmap if not mappedTomi Valkeinen
2015-11-18Card: support opening specific drm deviceTomi Valkeinen
2015-11-18Fb: collect fbs and destroy them in card's destructorTomi Valkeinen
2015-11-13Connector: prettier connector namesTomi Valkeinen
2015-11-13Connector: add get_mode(xres, yres, refresh)Tomi Valkeinen
2015-11-13Videomode cleanupTomi Valkeinen
2015-11-13dumbfb: move prime_fd() and fix its return typeTomi Valkeinen
2015-11-13dumbfb: lazy mmapTomi Valkeinen
2015-11-13connector: consider UNKNOWNCONNECTION as connectedTomi Valkeinen
2015-11-12libkms++: dumbframebuffer: Get file descriptor for the FBPeter Ujfalusi
v4l linux needs file descriptor instead of handle.
2015-11-11card: fix has_atomic if libdrm does not have atomic supportTomi Valkeinen
If libdrm was missing DRM_CLIENT_CAP_ATOMIC, but the driver still supported atomic modesetting, m_has_atomic was set to true. The end result was that test apps thought they can use atomic modesetting, but it wasn't functional in the libkmsxx.
2015-11-11AtomicReq: use nonblocking commitTomi Valkeinen
2015-11-06pixelformat: add undefinedTomi Valkeinen
2015-11-06dumbfb: improve exception textsTomi Valkeinen
2015-11-06remove print_shortTomi Valkeinen
2015-11-06card: use object vectorsTomi Valkeinen
2015-11-06card: use vectors with get_xxxs() methodsTomi Valkeinen
2015-11-06card: collect obs to vectorsTomi Valkeinen
2015-11-06card: add get_plane()Tomi Valkeinen
2015-11-06card: add get_crtcs()Tomi Valkeinen
2015-10-31Add AR24 & AB24 formatsTomi Valkeinen
2015-10-30add missing <stdexcept> includesTomi Valkeinen
2015-10-26ExtFramebuffer: add alternative constructorTomi Valkeinen
2015-10-26add Card::get_connector(id)Tomi Valkeinen
2015-10-26dumbfb: add offsetTomi Valkeinen
2015-10-26dumbfb: add num_planesTomi Valkeinen
2015-10-26dumbfb: expose handleTomi Valkeinen
2015-10-20libkms++/property: Add const std::string to_str(uint64_t val) constJyri Sarha
2015-10-20libkms++/drmobject: Add const std::map<uint32_t, uint64_t>& get_prop_map() constJyri Sarha
2015-10-20libkms++/plane: Add methods for getting details of the DRM objectJyri Sarha
2015-10-20libkms++/encoder: Add methods for getting details of the DRM objectJyri Sarha
2015-10-20libkms++/crtc: Add methods for getting details of the DRM objectJyri Sarha
2015-10-20libkms++/connector: Add methods for getting details of the DRM objectJyri Sarha
2015-10-20libkms++/pixelformats.h: Add static inline std::string ↵Jyri Sarha
PixelFormatToFourCC(PixelFormat f)
2015-10-09libkms: Add Plane::supports_formatTomi Valkeinen
2015-10-09testpat: add NV12/NV21 supportTomi Valkeinen
2015-10-08Add support for YVYU and VYUYTomi Valkeinen
2015-10-07Fix exception string.Jyri Sarha
2015-10-07Add XBGR8888 formatTomi Valkeinen
2015-10-04DumbFB: clean up format_info codeTomi Valkeinen
2015-10-04use PixelFormat all aroundTomi Valkeinen
2015-10-04add PixelFormat support to DumbFramebufferTomi Valkeinen
2015-10-04add PixelFormatTomi Valkeinen
2015-10-03use strings instead of char*Tomi Valkeinen
2015-10-03add PageFlipHandlerTomi Valkeinen
2015-10-03atomicreq: add a shortcutTomi Valkeinen