Displaying 3 results from an estimated 3 matches for "tile_blob".
Did you mean:
fileblob
2018 Jan 13
0
[PATCH] drmmode: update logic for dynamic connectors, paths, and tiles
...;
uint32_t fb_id;
- drmModeResPtr mode_res;
int cpp;
drmEventContext event_context;
#ifdef HAVE_LIBUDEV
@@ -83,6 +82,7 @@ typedef struct {
drmModeConnectorPtr mode_output;
drmModeEncoderPtr mode_encoder;
drmModePropertyBlobPtr edid_blob;
+ drmModePropertyBlobPtr tile_blob;
int num_props;
drmmode_prop_ptr props;
} drmmode_output_private_rec, *drmmode_output_private_ptr;
@@ -770,7 +770,7 @@ static const xf86CrtcFuncsRec drmmode_crtc_funcs = {
static unsigned int
-drmmode_crtc_init(ScrnInfoPtr pScrn, drmmode_ptr drmmode, int num)
+drmmode_crtc_init(Scrn...
2018 Oct 09
0
[PATCH] drmmode: update logic for dynamic connectors, paths, and tiles
...;
uint32_t fb_id;
- drmModeResPtr mode_res;
int cpp;
drmEventContext event_context;
#ifdef HAVE_LIBUDEV
@@ -83,6 +82,7 @@ typedef struct {
drmModeConnectorPtr mode_output;
drmModeEncoderPtr mode_encoder;
drmModePropertyBlobPtr edid_blob;
+ drmModePropertyBlobPtr tile_blob;
int num_props;
drmmode_prop_ptr props;
} drmmode_output_private_rec, *drmmode_output_private_ptr;
@@ -477,6 +477,8 @@ drmmode_set_mode_major(xf86CrtcPtr crtc, DisplayModePtr mode,
continue;
drmmode_output = output->driver_private;
+ if (drmmode_output->output_id == -1)
+...
2018 Feb 28
0
[ANNOUNCE] xserver 1.20 RC1
...(1):
glamor: Specify GLSL version for xv shader
Daniel Martin (15):
modesetting: Fix warning of unused variable if not GLAMOR_HAS_GBM
modesetting: Remove #ifdefs XF86_PDEV_SERVER_FD
modesetting: Check crtc before searching link-status property
modesetting: Fix leak of tile_blob in drmmode_output_destroy
modesetting: Use helper to fetch drmModeProperty(Blob)s
modesetting: Fix potential buffer overflow
test: input: Fix used uninitialized warning in dix_event_to_core
test: signal-logging: Fix looping signed number tests
Use ARRAY_SIZE all over t...