summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorTomi Valkeinen <tomi.valkeinen@ti.com>2017-02-10 07:03:26 +0200
committerTomi Valkeinen <tomi.valkeinen@ti.com>2017-02-10 07:04:02 +0200
commit186212dc95965a3e7cbc46dcace9af1d19100096 (patch)
treef6a5948548f7e074ad662e459acceb1662bdb246 /scripts
parentea26be116ab1e93871ccbfbb1267137f4d0ce47f (diff)
mappedframebuffer.h: add missing include
Diffstat (limited to 'scripts')
0 files changed, 0 insertions, 0 deletions
NGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ #ifndef __BUFFERS_H__ #define __BUFFERS_H__ struct kms_bo; struct kms_driver; enum fill_pattern { PATTERN_TILES = 0, PATTERN_PLAIN = 1, PATTERN_SMPTE = 2, }; struct kms_bo *create_test_buffer(struct kms_driver *kms, unsigned int format, unsigned int width, unsigned int height, unsigned int handles[4], unsigned int pitches[4], unsigned int offsets[4], enum fill_pattern pattern); unsigned int format_fourcc(const char *name); #endif