Displaying 20 results from an estimated 141 matches for "truecolor".
2002 Mar 16
0
X11(colortype="true") does not give a truecolor visual(PR#1387)
...> This seems to be a misunderstanding of the `colortype' argument: there is
> no argument to select a visual class.
Not as much a misunderstanding, but more considered as closely related.
>
> > The system in question (like many UNIX workstations) has both Pseudo and
> > truecolor visual types available, however the default type points to an 8 plane
> > PseudoColor visual.
>
> I believe that is unusual. Sun Xservers allow you to set the default
> visual on the command line: has the default been overridden? Ours with
> multiple visuals are selecting TrueC...
2002 Mar 16
1
X11(colortype="true") does not give a truecolor visual (PR#1388)
...a model which differs from
the X11 visual class, but the default class and depth are always used.
This seems to be a misunderstanding of the `colortype' argument: there is
no argument to select a visual class.
> The system in question (like many UNIX workstations) has both Pseudo and
> truecolor visual types available, however the default type points to an 8 plane
> PseudoColor visual.
I believe that is unusual. Sun Xservers allow you to set the default
visual on the command line: has the default been overridden? Ours with
multiple visuals are selecting TrueColor, but it does say the...
2002 Mar 16
0
X11(colortype="true") does not give a truecolor visual (PR#1390)
On Sat, 16 Mar 2002 ripley@stats.ox.ac.uk wrote:
> On Sat, 16 Mar 2002 Edwin@balpol.tudelft.nl wrote:
>
>
> > The system in question (like many UNIX workstations) has both Pseudo and
> > truecolor visual types available, however the default type points to an 8 plane
> > PseudoColor visual.
>
> I believe that is unusual. Sun Xservers allow you to set the default
> visual on the command line: has the default been overridden? Ours with
> multiple visuals are selecting TrueCo...
2009 Aug 24
4
[PATCH 1/2] man page: Fix the supported fb depths.
...--- a/man/nouveau.man
+++ b/man/nouveau.man
@@ -13,9 +13,10 @@ nouveau \- NVIDIA video driver
.fi
.SH DESCRIPTION
.B nouveau
-is an __xservername__ driver for NVIDIA video cards. The driver supports 2D
-acceleration and provides support for the following framebuffer depths:
-(15,) 16 and 24. TrueColor visuals are supported for these depths.
+is an __xservername__ driver for NVIDIA video cards. The driver
+supports 2D acceleration and provides support for the following
+framebuffer depths: 16, 24 and 30. TrueColor visuals are supported
+for these depths.
.SH SUPPORTED HARDWARE
The
--
1.6.3...
2018 Feb 04
0
[PATCH 2/2] nv50/xv: add support for depth 30 xv output
...index 0b6c4d4..2f1979a 100644
--- a/src/nouveau_xv.c
+++ b/src/nouveau_xv.c
@@ -112,6 +112,13 @@ XF86VideoFormatRec NVFormats[NUM_FORMATS_ALL] =
{15, DirectColor}, {16, DirectColor}, {24, DirectColor}
};
+#define NUM_FORMATS_NV50 8
+XF86VideoFormatRec NV50Formats[NUM_FORMATS_NV50] =
+{
+ {15, TrueColor}, {16, TrueColor}, {24, TrueColor}, {30, TrueColor},
+ {15, DirectColor}, {16, DirectColor}, {24, DirectColor}, {30, DirectColor}
+};
+
#define NUM_NV04_OVERLAY_ATTRIBUTES 4
XF86AttributeRec NV04OverlayAttributes[NUM_NV04_OVERLAY_ATTRIBUTES] =
{
@@ -2042,8 +2049,8 @@ NV50SetupTexturedVideo (Scre...
2018 Feb 04
1
[PATCH 1/2] dri3: remove bogus condition for creating pixmap
Not clear what the depth % 8 was trying to protect against, but it was
breaking 30bpp visuals with DRI3. Add it in to ensure that bitsPerPixel
% 8 is 0, since there is plenty of bpp/8 math in the driver.
Signed-off-by: Ilia Mirkin <imirkin at alum.mit.edu>
---
src/nouveau_dri2.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/src/nouveau_dri2.c b/src/nouveau_dri2.c
1999 Apr 02
3
X11 Device Driver
...ded a new parameter to
the X11/x11 function which controls this. The parameter is currently
called "colormodel" and works as follows:
colormodel = 0 Monochrome graphics
colormodel = 1 Grayscale (256 shades)
colormodel = 2 Pseudocolor1
colormodel = 3 Pseudocolor2
colormodel = 4 Truecolor
Pseudocolor1 allocates as big a color cube as possible and then
approximates requested colors with colors from the cube.
Pseudocolor2 allocates colors "on-demand" until it runs out of
colors. You then get a "can't allocate colors" error message.
More sophisticated device...
2007 Mar 21
3
TightVNC controlling a Mac OSX 10.4.9.
...ver default format:
32 bits per pixel.
Most significant byte first in each pixel.
True colour: max red 255 green 255 blue 255, shift red 16 green 8 blue 0
Warning: Cannot convert string
"-*-helvetica-bold-r-*-*-16-*-*-*-*-*-*-*" to type FontStruct
Using default colormap which is TrueColor. Pixel format:
16 bits per pixel.
Least significant byte first in each pixel.
True colour: max red 31 green 63 blue 31, shift red 11 green 5 blue 0
Using shared memory PutImage
ShmCleanup called
[d at f ~]$ vncviewer --version
TightVNC viewer version 1.2.9
--
--- David Woyciesjes
2016 Jan 05
3
Activate DVI-I behind KVM on FX 5200
Hi folks,
I don't seem to be able to enable the DVI-I output of an old FX 5200
behind a KVM switch. Autodetection works fine if the FX 5200 DVI output
is switched to the monitor, but when it is not, I have not found a way
to force-enable it.
Here is what I tried:
*) used the video=DVI-I-1:1280x1024-24 at 60e kernel parameter
(framebuffer still sits at 1024x768)
*) used "options
2024 Nov 14
0
[ANNOUNCE] xprop 1.2.8
xprop is a command line tool to display and/or set window and font
properties of an X server.
This release contains the following change to the way icons are displayed
in the terminal when COLORTERM=truecolor in the environment variables:
The vast majority of monospaced fonts are roughly half as wide as they
are tall; to account for this when displaying icons, `xprop` draws each
pixel twice in the horizontal, which nicely evens out the proportions.
This patch utilizes the Lower Hal...
2001 Aug 14
1
Wine & Half-Life
...Life problem? :
"Half Life need at least a 16bit color depth to run,
usually this is "32768" or "65535" colors"
I tried many settings in config, and it doesn't work.
I have Wine 20010809 from Debian binaries ( other versions
don't work too ) and X 4.1.0 with TrueColor (24bpp) color
depth on Nvidia card.
--
Pozdrawiam
Jakub "Kraju" Krajewski | kraju@no-spam.lnet.int.pl | ICQ 15671406
"The greatest warriors are the ones who fight for peace."
1998 Oct 05
1
R meets the gimp
...r a ``visualization'' course I am supposed to teach
I had a brief play with using the Gimp to capture an on-screen R plot and
then massaging it into something more suitable for magazine publication :-).
You can see the result at
ftp://stat.auckland.ac.nz/pub/ihaka/plot.jpg
It looks best in truecolor.
Ross
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-devel mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the "body", not the subject !) To: r-devel-reques...
2007 Feb 27
2
Invisible window problem
...en.
Here is the output from xwininfo on that window, xprop produces
nothing.
xwininfo: Window id: 0x3400787 (has no name)
Absolute upper-left X: 294
Absolute upper-left Y: 413
Relative upper-left X: 294
Relative upper-left Y: 413
Width: 1092
Height: 264
Depth: 0
Visual Class: TrueColor
Border width: 0
Class: InputOnly
Colormap: 0x0 (not installed)
Bit Gravity State: ForgetGravity
Window Gravity State: NorthWestGravity
Backing Store State: NotUseful
Save Under State: no
Map State: IsViewable
Override Redirect State: yes
Corners: +294+413 -294+413 -294-373 +...
2017 Jun 21
2
[PATCH 01/11] drm/fb-helper: do a generic fb_setcmap helper in terms of crtc .gamma_set
...etcolreg(struct drm_crtc *crtc, u16 red, u16 green,
>> - u16 blue, u16 regno, struct fb_info *info)
>> -{
>> - struct drm_fb_helper *fb_helper = info->par;
>> - struct drm_framebuffer *fb = fb_helper->fb;
>> -
>> - if (info->fix.visual == FB_VISUAL_TRUECOLOR) {
>
> This case here seems gone, and it was also the pièce de résistance when I
> tried tackling fbdev lut support. As far as I understand this stuff we do
> not support FB_VISUAL_TRUECOLOR palette, and all that bitshifting here is
> pointless. But I'm honestly not really clear...
2008 Jul 06
3
VNC 'fix' for 256 colour game only shows 2 colours?
I'm trying to run an old (~1995) Windows game under Wine, but it requires 256 colours and won't work any higher. I've checked out the 256 colour hacks page and the X methods don't work, because I use the FGLRX drivers and they don't support 8bpp, so I'm trying VNC.
I've installed vnc-server and vnc so I can play it through a 256 colour VNC connection, but so far I can
2008 May 26
2
windows opening off screen
...exe
and
xwininfo: Window id: 0x3600022 "PokerTracker? v3.00 build 2 Database: PokerTra
cker 3 Database"
Absolute upper-left X: -1050
Absolute upper-left Y: 158
Relative upper-left X: -1050
Relative upper-left Y: 158
Width: 804
Height: 585
Depth: 24
Visual Class: TrueColor
Border width: 0
Class: InputOutput
Colormap: 0x2400001 (not installed)
Bit Gravity State: NorthWestGravity
Window Gravity State: NorthWestGravity
Backing Store State: NotUseful
Save Under State: no
Map State: IsUnMapped
Override Redirect State: no
Corners: +-1050+158 -1526+158...
2019 Aug 06
2
unstable refresh rate
I think I may have updated the tv firmware between when it worked and
when it didn't.
I wonder it it has to do with bit depth.
I use lubuntu and it doesn't let me pick the bit depth so I don't know
what it using.
2008 Jul 07
4
getting opensolaris b85 domU to start
...http://www.realvnc.com for information on VNC.
Mon Jul 7 10:42:19 2008
CConn: connected to host 127.0.0.1 port 5900
CConnection: Server supports RFB protocol version 3.3
CConnection: Using RFB protocol version 3.3
Mon Jul 7 10:42:25 2008
TXImage: Using default colormap and visual, TrueColor, depth 24.
CConn: Using pixel format depth 6 (8bpp) rgb222
CConn: Using ZRLE encoding
Mon Jul 7 10:42:26 2008
CConn: Throughput 20000 kbit/s - changing to hextile encoding
CConn: Throughput 20000 kbit/s - changing to full colour
CConn: Using pixel format depth 2...
2015 Jun 12
2
Fwd: Problem with GT218 (GeForce GT210)
...-------------------------------------------------------------------------------------------------
> >>
> >>
> >> [ 1.018704] vesafb: mode is 640x480x32, linelength=2560, pages=0
> >> [ 1.018706] vesafb: scrolling: redraw
> >> [ 1.018708] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
> >> [ 1.026887] vesafb: framebuffer at 0xfb000000, mapped to
> >> 0xffffc90010e80000, using 1216k, total 1216k
> >> [ 1.027623] Console: switching to colour frame buffer device 80x30
> >> [ 1.028274] fb0: VESA VGA frame bu...
2015 Apr 05
3
Nouveau kernel module exhausting CPU
...terface version: 1.2.1
[176404.386] (II) [drm] nouveau interface version: 1.2.1
[176404.387] (--) NOUVEAU(0): Chipset: "NVIDIA NVC4"
[176404.387] (==) NOUVEAU(0): Depth 24, (--) framebuffer bpp 32
[176404.387] (==) NOUVEAU(0): RGB weight 888
[176404.387] (==) NOUVEAU(0): Default visual is TrueColor
[176404.387] (**) NOUVEAU(0): Option "ZaphodHeads" "HDMI-1"
[176404.387] (==) NOUVEAU(0): Using HW cursor
[176404.387] (==) NOUVEAU(0): GLX sync to VBlank enabled.
[176404.387] (==) NOUVEAU(0): Page flipping enabled
[176404.387] (==) NOUVEAU(0): Swap limit set to 1 [Max allowed...