View | Details | Raw Unified | Return to bug 48682
Collapse All | Expand All

(-)inxi.save (-3 / +12 lines)
Lines 16259-16267 sub gl_data { Link Here
16259
			}
16259
			}
16260
			elsif ($working[0] eq 'EGL driver name'){
16260
			elsif ($working[0] eq 'EGL driver name'){
16261
				if (!defined $device){ 
16261
				if (!defined $device){ 
16262
					$gl->{'egl'}{'platforms'}{$platform}{'egl'}{'driver'} = $working[1];
16262
					    if ($platform // '' ){
16263
						$gl->{'egl'}{'platforms'}{$platform}{'egl'}{'driver'} = $working[1]; }
16264
					     else  {
16265
						$gl->{'egl'}{'platforms'}{'platform'}{'egl'}{'driver'} = $working[1];}
16263
					if ($mesa_drivers{$working[1]}){
16266
					if ($mesa_drivers{$working[1]}){
16264
						$gl->{'egl'}{'platforms'}{$platform}{'egl'}{'hw'} = $mesa_drivers{$working[1]};
16267
					    if ($platform // '' ){
16268
						$gl->{'egl'}{'platforms'}{$platform}{'egl'}{'hw'} = $mesa_drivers{$working[1]}; }
16269
						else {
16270
						$gl->{'egl'}{'platforms'}{'egl'}{'hw'} = $mesa_drivers{$working[1]}; }
16265
					}
16271
					}
16266
				}
16272
				}
16267
				else {
16273
				else {
Lines 16281-16287 sub gl_data { Link Here
16281
					$gl->{'egl'}{'platforms'}{$platform}{$device}{'egl'}{'client-apis'} = [split(/\s+/,$working[1])];
16287
					$gl->{'egl'}{'platforms'}{$platform}{$device}{'egl'}{'client-apis'} = [split(/\s+/,$working[1])];
16282
				}
16288
				}
16283
				else {
16289
				else {
16284
					$gl->{'egl'}{'platforms'}{$platform}{'egl'}{'client-apis'} = [split(/\s+/,$working[1])];
16290
				     if ( $platform // '' ) {
16291
					$gl->{'egl'}{'platforms'}{$platform}{'egl'}{'client-apis'} = [split(/\s+/,$working[1])]; }
16292
				     else {
16293
					$gl->{'egl'}{'platforms'}{'egl'}{'client-apis'} = [split(/\s+/,$working[1])]; }
16285
				}
16294
				}
16286
			}
16295
			}
16287
		}
16296
		}

Return to bug 48682