summaryrefslogtreecommitdiff
path: root/libkms++
AgeCommit message (Collapse)Author
2016-06-11rename dirsTomi Valkeinen
2016-06-07Property: remove now unused to_str()Tomi Valkeinen
2016-06-04Card: remove get_crtc_by_indexTomi Valkeinen
2016-06-04Card::get_object(): return nullptr if not foundTomi Valkeinen
2016-06-04Videomode: add helpersTomi Valkeinen
2016-06-04Property: add gettersTomi Valkeinen
2016-06-04Encoder: add DPMST typeTomi Valkeinen
2016-06-04Connector: hack fix EDID blob IDTomi Valkeinen
2016-05-30AtomicReq: support 'allow_modeset'Tomi Valkeinen
2016-05-27Crtc: fix get_primary_planeTomi Valkeinen
2016-05-27Crtc: fix throw messageTomi Valkeinen
2016-05-27Add Videomode::to_blob()Tomi Valkeinen
2016-05-27AtomicReq: add helper to add multiple propsTomi Valkeinen
2016-05-27add missing idx for Plane & EncoderTomi Valkeinen
2016-05-25Add support for DRM blobsTomi Valkeinen
2016-05-25Split properties from DrmObject into DrmPropObjectTomi Valkeinen
2016-05-23Cleanup AtomicReq::commitTomi Valkeinen
2016-05-23Remove swig helpersTomi Valkeinen
2016-05-23Add Crtc::get_primary_planeTomi Valkeinen
2016-05-18fb: fix a few wrong typesTomi Valkeinen
2016-05-16kmsxx: add modedbTomi Valkeinen
2016-04-25Videomode is a struct, not class, so declare it as oneTomi Valkeinen
2016-04-12atomicreq: add commit_sync()Tomi Valkeinen
2016-03-26add ExtFramebuffer ctr for fdsTomi Valkeinen
2016-03-26card: add drop_masterTomi Valkeinen
2016-03-24fix a few cppcheck warningsTomi Valkeinen
2016-03-24clean up code formattingTomi Valkeinen
2016-03-18libkmstest: remove dependency to libdrmTomi Valkeinen
2016-03-17AtomicReq: add sync commitTomi Valkeinen
2016-03-16dumbframebuffer: fix throw linefeed in in prime_fdPeter Ujfalusi
2016-03-16add public PixelFormatInfoTomi Valkeinen
2016-03-15Add IMappedFramebuffer and remove MappedBufferTomi Valkeinen
2016-03-08crtc: add disable_plane()Tomi Valkeinen
2016-03-08add ob::set_prop_value()Tomi Valkeinen
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