facf0c92e0
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
15 lines
325 B
C
15 lines
325 B
C
/* SPDX-License-Identifier: MIT */
|
|
|
|
#ifndef __DRM_DUMB_BUFFERS_H__
|
|
#define __DRM_DUMB_BUFFERS_H__
|
|
|
|
struct drm_device;
|
|
struct drm_mode_create_dumb;
|
|
|
|
int drm_mode_size_dumb(struct drm_device *dev,
|
|
struct drm_mode_create_dumb *args,
|
|
unsigned long hw_pitch_align,
|
|
unsigned long hw_size_align);
|
|
|
|
#endif
|