Re: denotiation against Apple Inc

2007-07-18 Thread Tim Roberts
. Why does it hurt? Isn't that the whole spirit of open source? -- Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc.

Re: Is there an Xlib clone?

2007-05-15 Thread Tim Roberts
. Is that what you wanted? -- Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc. ___ Devel mailing list Devel@XFree86.Org http://XFree86.Org/mailman/listinfo/devel

Re: WD90C24 Anyone?

2006-11-07 Thread Tim Roberts
assembler. The blitter provided virtually no acceleration, so you won't really be giving anything up to use the fb driver. -- Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc. ___ Devel mailing list Devel@XFree86.Org http://XFree86.Org/mailman

Re: x86emu emulation problem

2006-10-06 Thread Tim Roberts
which segment register to use. -- Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc. ___ Devel mailing list Devel@XFree86.Org http://XFree86.Org/mailman/listinfo/devel

Re: x86emu emulation problem

2006-10-05 Thread Tim Roberts
push cs 68FB 0102 add [bp+si],ax 68FD E80080call 0xe900 !!!HERE AGAIN This is probably data -- either font data or VGA register tables. Can you trace backwards any more and figure out how you got to 68DA? -- Tim Roberts, [EMAIL PROTECTED

Re: Xfree86 drivers versus kernel drivers

2006-08-08 Thread Tim Roberts
the frame buffer into memory (via the mmap system call). Some drivers use more than that. If a graphics chip requires the use of DMA, as some do, then the XFree86 driver has to rely on a kernel component for help. Almost all of the OpenGL drivers need a kernel component for that reason. -- Tim

Re: Xfree86 drivers versus kernel drivers

2006-08-08 Thread Tim Roberts
Enrico Weigelt wrote: * Tim Roberts [EMAIL PROTECTED] wrote: Historically, the original Windows NT 3.x had the exact same design. Display drivers were actually user-mode DLLs that ran in a separate process (called CSRSS). Users complained about the task-switch overhead, and so

Re: How Xserver build the makefil for dirver?

2006-08-03 Thread Tim Roberts
to modify? It isn't that easy. There were a number of changes between 4.3 and 4.4, so a fair amount of source code modification will probably be required. Have you tried just loading the 4.4 driver in 4.3? If it complains about ABI problems, you can try the -ignoreABI switch. -- Tim Roberts

Re: How Xserver build the makefil for dirver?

2006-08-03 Thread Tim Roberts
. The method you use depends on how you start the server. If you use startx from a command line, you can say startx -- -ignoreABI. If you run a version of xdm at boot time, you probably have a file called /etc/X11/Xservers that gives the commands lines. You can add the switch there. -- Tim Roberts

Re: Questions about XAA

2006-08-01 Thread Tim Roberts
way I can do is to modify the source code of frame buffer manager? No. There's really no point. XAA knows what it needs, and it suballocates as required. What would you hope to gain? By the way, you have the full source code available to you. You can just look this up. -- Tim Roberts

Re: how to change mouse select behavior?

2006-03-08 Thread Tim Roberts
suggests to me that the OP can restore this behavior for himself by adding the appropriate charClass definition into his private Xresources. Do I misunderstand? -- Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc. ___ Devel mailing list Devel

Re: X Error : BadLength (poly request too large or Internal Xlib lengh Error )16

2006-02-06 Thread Tim Roberts
opcode : 18 Minor opcode : 0 Resource id : 0x2005375 This error is not coming always . Can any one help me to solve this problem . We just had this conversation about the problems with multithreading Xlib. Have you taken the suggestions that were already given? -- Tim Roberts, [EMAIL

Re: Xlib : sequence lost (0x1718e 0x71a0) in reply to 0x0!

2006-02-02 Thread Tim Roberts
to make its own call to XOpenDisplay, so that it has its own connection, separate from the rest of the application. -- Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc. ___ Devel mailing list Devel@XFree86.Org http://XFree86.Org/mailman

Re: copying with the middle mouse button

2006-01-20 Thread Tim Roberts
of volume I of the old O'Reilly books on Xlib describe the process. You can read about XSetSelectionOwner and XConvertSelection, and the SelectionNotify event. -- Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc. ___ Devel mailing list Devel

Re: Xaw: Label widget class

2006-01-04 Thread Tim Roberts
. There has been some work at updating it (check for Xaw3d, XawPlus, or XawXpm), but I suspect you'd be better off moving into the 1990s with something like gtk or Qt. -- Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc. ___ Devel mailing list

Re: Problems with xlib + ipc

2005-12-30 Thread Tim Roberts
herring on my part. All I was trying to say is that the owning process will get the events, even if another process destroys the window. If the owning process doesn't need to do any special handling when the window is destroyed, you don't have to add anything now. -- Tim Roberts, [EMAIL

Re: Problems with xlib + ipc

2005-12-29 Thread Tim Roberts
. The parent process will have to be able to handle the messages that result from the XDestroyWindow. -- Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc. ___ Devel mailing list Devel@XFree86.Org http://XFree86.Org/mailman/listinfo/devel

Re: where the XFree86 xserver opening the framebuffer device..????

2005-12-23 Thread Tim Roberts
don't use /dev/fb at all. They access the hardware directly. You can grab frames without writing any code at all. That's what the xwd tool is for. -- Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc. ___ Devel mailing list Devel@XFree86

Re: xfree86 4.5 cross compilation

2005-12-22 Thread Tim Roberts
imakemdep.h imakemdep_cpp.h; \ else touch imakemdep_cpp.h; fi cc: No such file or directory And, just in case it isn't clear, the cc in your path must be the NATIVE compiler, not the cross-compiler. The build process has to build a couple of the tools that will be used later on. -- Tim Roberts

Re: [PATCH] trident_video.c

2005-12-09 Thread Tim Roberts
waiting to happen. -- Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc. ___ Devel mailing list Devel@XFree86.Org http://XFree86.Org/mailman/listinfo/devel

Re: how to attach windows' ids?

2005-12-05 Thread Tim Roberts
for manipulating XML files, there's nothing wrong with XML as a configuration manager. -- Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc. ___ Devel mailing list Devel@XFree86.Org http://XFree86.Org/mailman/listinfo/devel

Re: Offscreenmemory copy

2005-12-02 Thread Tim Roberts
between arbitrary offscreen areas. You just have to describe the areas (width, height, pitch). The means of doing that depends on the chip. Anybody know why there were a set of messages from two weeks ago (including this one) that are just showing up today? -- Tim Roberts, [EMAIL PROTECTED

Re: portrait mode how to

2005-11-28 Thread Tim Roberts
rotation and all. but just want to set the mode as 768x1024. For most of the the Intel graphics chips, as far as I know, the driver sets the mode through the video BIOS. As such, if the mode is not present in the BIOS, it simply cannot be selected. -- Tim Roberts, [EMAIL PROTECTED] Providenza

Re: How to turn off the hardware mouse rendering?

2005-11-28 Thread Tim Roberts
the pointer in the snap, you will have to add it by hand. -- Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc. ___ Devel mailing list Devel@XFree86.Org http://XFree86.Org/mailman/listinfo/devel

Re: How to get the topmost window through xlib programming

2005-11-22 Thread Tim Roberts
is it possible to check whether the windowID that i am having is top most window or not? XGetInputFocus will tell you the window that currently holds the keyboard focus. That is usually what you what when you ask for the topmost window. -- Tim Roberts, [EMAIL PROTECTED] Providenza

Re: Multiple Xv overlays cause blue flashing

2005-11-16 Thread Tim Roberts
way to prevent the flashing is to use a single overlay and somehow figure out how to share it among the widget windows. Does your graphics card support OpenGL? One practical alternative is to render the movies into textures. -- Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc

Re: TCP/IP interface code in XFree86

2005-10-24 Thread Tim Roberts
intended for the individual or the entity it is addressed to. Anyone remember the Lily Tomlin character Ernestine, the ATT operator? Two ringy-dingies... Oh, yes, snort, good morning. Have I reached the party to whom I am speaking? -- Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc

Re: Wire protocol for X

2005-10-12 Thread Tim Roberts
? There are a number of competent PC-based X servers today, and many of the Winterminals do X as well as RDP. What you're asking is hard; I would think there are a number of much more economical solutions. -- Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc

Re: Fwd: Hooking

2005-09-09 Thread Tim Roberts
is a completely separate process. The messages are parsed, and eventually handed down to some driver that does the drawing. It is possible to insert a tee into the socket stream and split off a second copy for yourself, but that means parsing the X protocol, not handling APIs. -- Tim Roberts, [EMAIL

Re: tdfx and DDC2

2005-08-30 Thread Tim Roberts
that does not stuff the BIOS chip. -- Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc. ___ Devel mailing list Devel@XFree86.Org http://XFree86.Org/mailman/listinfo/devel

Re: Some doubts in Xlib

2005-08-25 Thread Tim Roberts
sent to the server are mouse position updates, which are not going to be neatly human-readable. -- Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc. ___ Devel mailing list Devel@XFree86.Org http://XFree86.Org/mailman/listinfo/devel

Re: Query mouse events from other Windows/Screens

2005-08-04 Thread Tim Roberts
of the window order, underneath everything else. What Andrew is saying is that you have to create a NEW window, desktop-sized, and bring it to the front. -- Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc. ___ Devel mailing list Devel@XFree86.Org

Re: can we change desktop size

2005-06-28 Thread Tim Roberts
please mail me. The standard X protocol simply does not allow this. The desktop size is fixed at startup time and must remain a constant. The xrandr extension in XFree86 adds this ability. That's the only way, without stopping and restarting the server. -- Tim Roberts, [EMAIL PROTECTED

[XFree86] xlogin linux-PAM

2005-06-06 Thread Tim Johnston
like to tinker with the login as can be done via PAM. regards, Tim Johnston ___ XFree86 mailing list XFree86@XFree86.Org http://XFree86.Org/mailman/listinfo/xfree86

Re: Fatal Error --? Video driver?

2005-05-03 Thread Tim Roberts
get acceleration, but it should work. -- Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc. ___ Devel mailing list Devel@XFree86.Org http://XFree86.Org/mailman/listinfo/devel

Re: 4.4.99.902: s3 fails some of xtests

2005-03-04 Thread Tim Roberts
, anyway?) Raster operation. That's the Windows term for a function that describes how to merge to pixel streams. (Actually, for all I know, the term might pre-date Windows. X uses the more mnemonic word function.) -- - Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc

Re: 4.4.99.902: s3 fails some of xtests

2005-03-02 Thread Tim Roberts
are also attached. Have anyone see souch behaviour? Have anyone programers manual about 86c764/765 [Trio32/64/64V+] chip? I have a Trio64V+ manual. The graphics engine is basically the same as the 8514/A. I'll take a look at the source and see if anything looks funny. -- - Tim Roberts, [EMAIL

Re: 4.4.99.902: s3 fails some of xtests

2005-03-02 Thread Tim Roberts
; to the S3AccelInitXxx function at the bottom of the file. -- - Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc. ___ Devel mailing list Devel@XFree86.Org http://XFree86.Org/mailman/listinfo/devel

Re: help about server flags

2005-02-22 Thread Tim Roberts
. When XFree86 runs, it tells the kernel that it wants to handle all VT switching when it is the current process. Once a handler has been registered, the kernel is no longer involved. So, if XFree86 never releases control, no other VT can get in. -- - Tim Roberts, [EMAIL PROTECTED] Providenza

Re: External CRT works on 1024x768 but LCD not. Please Help!!!

2005-02-21 Thread Tim Roberts
they don't even have a graphics driver writer on staff. -- - Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc. ___ Devel mailing list Devel@XFree86.Org http://XFree86.Org/mailman/listinfo/devel

Re: x86 emulator bug

2005-02-10 Thread Tim Roberts
is greater than or equal to the operand size, the contents of the destination register and the flags are undefined. Thus, there is technically nothing wrong with the emulator code as-is. Your patch is right, but the existing code is also right. -- - Tim Roberts, [EMAIL PROTECTED] Providenza

Re: Can I ask about developping *with* XFree or just *on* XFree

2005-02-02 Thread Tim Roberts
. As long as you can deal with that, ask away. ;) -- - Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc. ___ Devel mailing list Devel@XFree86.Org http://XFree86.Org/mailman/listinfo/devel

Re: How does XSetInputFocus() generate errors?

2004-12-17 Thread Tim Roberts
1, it means your request has been successfully submitted. It does NOT mean your request has been completed. That happens later, asynchronously. When it is finally executed by the server, THAT'S when BadMatch, BadValue, and BadWindow errors can be returned to your message loop. -- - Tim

Re: Documentation about drivers

2004-11-19 Thread Tim Roberts
be present for the drivers to build. However, you only have to do it once. Once the tree has been created, you can build your driver by itself. -- - Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc. ___ Devel mailing list [EMAIL PROTECTED] http

Re: How can I get rid of the cursor for the Xserver?

2004-11-04 Thread Tim Roberts
desktop situation, thereby making the system unusable. Unlike Windows, where every program is required to operate without a mouse, X apps tend to rely heavily on the pointer. -- - Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc. ___ Devel

Re: Added Pseudocolor Visuals for XFree86?

2004-11-02 Thread Tim Roberts
the hardware, leaving emulation as the only solution. Exactly correct. Windows XP still includes support for 8-bit pseudo-color, if you know how to hack the registry, but it is not exposed in the UI, and their documentation implies that it is not supported. -- - Tim Roberts, [EMAIL PROTECTED

Re: Added Pseudocolor Visuals for XFree86?

2004-11-01 Thread Tim Roberts
it, and if Windows doesn't handle it, there is no business case for developing it in hardware. Assuming there was such a chip, there are no architectural barriers to supporting it in XFree86.. -- - Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc.

Re: Memory leaks when lots of graphical operations? [Qt/X11 3.1.1]

2004-10-18 Thread Tim Roberts
was that the CLIENT was leaking memory, not the SERVER. -- - Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc. ___ Devel mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/devel

Re: UseFBDev makes X-display in several wide bars, each 110 degree rotated, unusable

2004-08-27 Thread Tim Roberts
mode in the list (including the 7 default modes I deleted) is shown as having a pixel clock of 108 MHz, horiz of 64.6 kHz, and vert of 60.8 Hz. The sync and blank numbers in the modeline are bonkers, too. Is this a general issue in the 4.4.99 release, or only for this gentleman? -- - Tim Roberts

Re: Driver (i810) ignores modeline directives in Config File

2004-08-10 Thread Tim Roberts
Nqnsome wrote: No replies ... No solutions ... Too sad ... :'( I'm not sure what you're complaining about. The thread you replied to, which you included in your quoted text, includes the solution to your problem. -- - Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc. Nqnsome

Re: Colors

2004-08-05 Thread Tim Roberts
suggestions ? I would expect 256 colors. Screenshots at http://www.staff.amu.edu.pl/~apopiele/embed.html , in the bottom part of page. There are way more than 16 colors in those screen shots. -- - Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc

Re: Emulation of Alt+Numpad+Digits behavior

2004-08-04 Thread Tim Roberts
unconditionally that no X application currently uses Alt-Numpad combinations? Or maybe I'm just scaring up issues where none exist. -- - Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc. ___ Devel mailing list [EMAIL PROTECTED] http://XFree86.Org

Savage patch

2004-07-12 Thread Tim Roberts
= TRUE; psav-rotate = -1; xf86DrvMsg(pScrn-scrnIndex, X_CONFIG, Rotating screen counter clockwise - acceleration disabled\n); + xf86DisableRandR(); } else { The messages could be changed to indicate xrandr disabling as well, but that's of secondary importance. -- - Tim

Re: rotate functionality in i8xx driver?

2004-06-08 Thread Tim Roberts
to the i810 driver. Yes, I was pleasantly surprised at how easy it was to add this. It disables acceleration, of course, but it still runs quite respectably on a hot CPU. -- - Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc. ___ Devel

[XFree86] X crashes when playing movie

2004-05-28 Thread Tim Kemna
and XF86Config file are attached. I hope anyone can help me. Regards, Tim This is a pre-release version of XFree86, and is not supported in any way. Bugs may be reported to [EMAIL PROTECTED] and patches submitted to [EMAIL PROTECTED] Before reporting bugs in pre-release versions, please check

Re: Where do I start?

2004-05-27 Thread Tim Roberts
. Learn XML packages for PHP. 11. Golly, I need a to-do list to keep track of all of this.. That's the way most of my spare time projects go. -- - Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc. ___ Devel mailing list [EMAIL PROTECTED] http

[XFree86] men this is your chance!

2004-05-18 Thread Tim Villanueva
Hello Mailman ( Wed, 19 May 2004 05:56:14 +0300 ) Introgducing Instzant groawth foremula pidll! Our maqle enhankcement piulls will enlaorge your peenis by 1-3+ incfhes prowduce powegrful erecttions, incrwease the inteynsity of your orgxasms, and much more ! Stop being shy and insecure

Re: offtopic help request (?)

2004-05-17 Thread Tim Roberts
, the whole system is frozen and I cant rely on other stuff than my own code or direct hardware. Now you know why the best kernel debuggers for Windows use a -- - Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc. ___ Devel mailing list [EMAIL

Re: Testing X on 2.6 Mega Hertz FPGA

2004-03-16 Thread Tim Roberts
, not a marketing trial. As long as you are patient, I don't see any reason why this shouldn't work. To the original poster, what is your video device and how is connected? Have you implemented a kernel frame buffer device so that the XFree86 frame buffer driver will work? -- - Tim Roberts

Re: [support@ati.com: XFree / Linux Support # 2118096]

2004-03-15 Thread Tim Roberts
as anything else. You have to have someone who (a) is an XFree86 developer, who (b) happens to acquire one of the new boards, and who (c) has the free time to invest in extending a driver to handle the new chip. -- - Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc

Re: DGA - the future?

2004-03-09 Thread Tim Roberts
the desktop and draw directly onto the bits of the frame buffer. Both DirectDraw and DGA provide that access, and both of them are a pain for driver writers. It doesn't make them evil. -- - Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc

Re: lockups

2004-02-19 Thread Tim Roberts
15 10:11:45 EST 2004 i686 Build Date: 23 January 2004 Interesting, but you left out the most critical piece of information: what graphics chip and driver? -- - Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc. ___ Devel mailing list [EMAIL

Re: Modifications to linuxPci.c to optimize PCI scan

2004-02-17 Thread Tim Roberts
running on 2.0.x kernels. I don't know whether there are other issue with 2.0.x kernels or not, but since the cost of a full PCI bus search is so small, it seems counterproductive to make this change. -- - Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc

Re: XVideo seems to work on NeoMagic NM2097

2004-02-09 Thread Tim Roberts
. That's enough for a 320x240 YUV overlay, but nothing bigger. If you're seeing full-screen MPEG videos, then they are probably being drawn without the use of the overlay. The 2090 could be made to work, but the 2070 only has 900k of video RAM. It won't even do 800x600 16bpp. -- - Tim Roberts

Re: does XFree86 need kernel framebuffer support?

2004-02-06 Thread Tim Roberts
Sergey Babkin wrote: Tim Roberts wrote: Andrew C Aitchison wrote: There are two cases where XFree86 does need kernel support. * Chipsets like the i810/i815/i835/... family have no framebuffer memory but use main system memory for the framebuffer. This requires agpgart support from

Re: does XFree86 need kernel framebuffer support?

2004-02-05 Thread Tim Roberts
as the BIOS has done the proper division of memory at boot time, that's all it needs. -- - Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc. ___ Devel mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/devel

Re: Manufacturers who fully disclosed specifications for agp cards?

2004-02-04 Thread Tim Roberts
pain in the butt. It is not possible in NT/2K/XP. -- - Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc. ___ Devel mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/devel

Re: Manufacturers who fully disclosed specifications for agp cards?

2004-02-03 Thread Tim Roberts
. -- - Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc. ___ Devel mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/devel

Re: Manufacturers who fully disclosed specifications for agp cards?

2004-02-02 Thread Tim Roberts
an interesting question, since you can actually glean more information from the source than you can from the confidential chip specs (which are extremely terse), but they had no problem with it. -- - Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc

Re: CVS XFree (savage driver) xsuite failures

2004-01-26 Thread Tim Roberts
eport. So it looks like the attached patch should be committed? Yes, I would concur with this. -- - Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc.

Re: CVS XFree (savage driver) xsuite failures

2004-01-19 Thread Tim Roberts
just converts to Bresenham. If XAA does that for me, then it's silly to support both. -- - Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc. ___ Devel mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/devel

xprt 902 eats up all cpu cycles

2004-01-10 Thread Tim Krieglstein
stopping the application brings the screen back (which is kind of difficult with a black screen ...). My Monitor with 1600x1200 res. is connected via dvi-d to the gfx-card. But i think this problem is known but still not solved currently? Tim ___ Devel

Re: Driver for CT69030 for rendering YUV data.

2004-01-08 Thread Tim Roberts
as an overlay, not as a frame buffer format. -- - Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc. ___ Devel mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/devel

Re: Driver for CT69030 for rendering YUV data.

2004-01-08 Thread Tim Roberts
On Thu, 8 Jan 2004 09:46:34 -0600, Billy Biggs [EMAIL PROTECTED] wrote: Tim Roberts ([EMAIL PROTECTED]): The most common are YUY2 and UYVY, both of which are 4:2:2 formats and have 12 bits per pixel. You mean 16 bits per pixel ;-) Doh, of course I do. Thanks. I spend too much time at Intel

[XFree86] Monitor

2003-12-05 Thread Tim Rose
Hi I am installing red hat 9 on to a laptop but once installed it comes up saying no screens found I have selected laptop panel and the resolution is correct could you please help? Regards Tim Rose Annual Solutions Ltd

RE: [XFree86] Re: can't get direct 3D with Radeon 9200

2003-12-04 Thread Tim Roberts
separate from their Savage driver. This is going to cause no end of grief. I've always said that the XFree86 Savage driver supports every graphics chip with Savage in the name. Now, that is no longer true. -- - Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc

Re: patch for a crash in x86 emulator

2003-12-04 Thread Tim Roberts
, B, and C. Given that, it is hard to imagine a scenario where DS and ES are not completely sufficient to do the job. Do you know what call is being made at the time of the crash? -- - Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc

Re: Test report of cvs head 1. nov

2003-12-03 Thread Tim Krieglstein
problems under an other widespread os, so it seems to be hardware related) The mail would have been a little longer... but typing everything twice is bothering to much. Tim ___ Devel mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/devel

Re: [XFree86] Multihead System with 2 Radeon 9100s

2003-12-03 Thread Tim Mathews
Yup, that took care of the problem. On Wednesday 03 December 2003 10:29 am, Alex Deucher wrote: You might want to try with the radeon driver from cvs. some fixes for problems with multiple cards went in a while back. Alex ___ XFree86 mailing list

Re: setpriority() call on server fork

2003-12-01 Thread Tim Roberts
this, but just in case, -1 is a HIGHER priority than 0. -- - Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc. ___ Devel mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/devel

[XFree86] Multihead System with 2 Radeon 9100s

2003-12-01 Thread Tim Mathews
incidently are also on bus 7, devices 6 7. I can use any of the four cards as long as references to the other three are commented out. Thanks, Tim Mathews Other info that may be of interest: I compiled with gcc-2.95.3, binutils-2.14 and glibc-2.3.2. I've also tried a clean build with gcc

Re: Could the VESA BIOS be of assistance? (ID 20311056 ignore this filter)

2003-11-24 Thread Tim Roberts
their extension at one point, because the Savage driver sets the wrong refresh rate on some ProSavage-DDR boards. Because of those issues, I am forced to keep both the BIOS method and the old register-pounding method alive. -- - Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc

RE: XvShmPutImage with XDraw commands

2003-11-13 Thread Tim Roberts
acceleration of MPEG motion compensation vectors. It is VERY specific to the MPEG protocol, and is likely of no use in any other context. The xrender extension can do alpha blending, although driver support is still lacking. -- - Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc

Re: XvShmPutImage with XDraw commands

2003-11-12 Thread Tim Roberts
--Original Message Text--- From: Steve Thrash Date: Wed, 12 Nov 2003 13:09:01 -0500 I am using XvShmPutImage to draw video via a YUV overlay into a window. Then I am using XDraw commands to draw "overlays" directly to the window (lines, arcs, text, etc.). When I do this the video

Re: Nvidia driver relation to XFree

2003-11-03 Thread Tim Roberts
for. :) DGA is one was for you to take ownership of the frame buffer, but like all of XFree86, it is a user-mode service. -- - Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc. ___ Devel mailing list [EMAIL PROTECTED] http://XFree86.Org

Re: Nvidia driver relation to XFree

2003-11-03 Thread Tim Roberts
On Mon, 03 Nov 2003 19:53:56 +0100, Gerhard W. Gruber wrote: ? On Mon, 03 Nov 2003 10:08:37 -0800, Tim Roberts [EMAIL PROTECTED] wrote: The video driver is part of XFree86. I don't think that this is neccessarily true, or is it? Yes, it is. I don'tknow how it is for other cards but in case

[XFree86] triple head config problems (cyberblade,sis + tseng)

2003-11-02 Thread Tim Wood
Cheers Tim ___ XFree86 mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/xfree86

Re: turnning lcd on side for a display

2003-10-28 Thread Tim Roberts
is portrait (tall). With many drivers, you can use Option Rotate CW in the XF86Config file. Note, however, that this often involves turning off the hardware acceleration, since most graphics chips do not support hardware rotation like that. -- - Tim Roberts, [EMAIL PROTECTED] Providenza

Re: C+T 69030 driver on powerpc

2003-10-23 Thread Tim Roberts
of 0x80 to the base address in the big-endian case? Many graphics chips include two separate views of the frame buffer: one that swaps bytes, one that does not. This makes it easy to handle endian mismatches. I'm guessing that's the case here. -- - Tim Roberts, [EMAIL PROTECTED] Providenza

[XFree86] Setting up a virtual display larger than video memory?

2003-10-18 Thread Gumnos (Tim Chase)
if it would help matters) Any pointers? Thanks, -tim ___ XFree86 mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/xfree86

VIA's Savage Drivers

2003-10-15 Thread Tim Roberts
? -- - Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc. ___ Devel mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/devel

Re: Kernel Module? On second thought...

2003-10-15 Thread Tim Roberts
is that the threshhold needs to be set rather high. It's not that the kernel idea is unconditionally bad. It's just that, for the typical 2D driver, the gain isn't worth the pain. -- - Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc. ___ Devel

Re: You suggest an upgrade, eh?

2003-10-14 Thread Tim Roberts
- a demonstration like this helps me when proving that X is not slow. It does no such thing. It demonstrates that OpenGL on Linux is not slow, but to run those applications you essentially shut down X. You've demonstrated nothing about X's performance. -- - Tim Roberts, [EMAIL PROTECTED

Re: What about a kernel module?

2003-10-08 Thread Tim Roberts
to be FASTER because BOTH pixmaps are in video memory. Depends on your video card. There are certainly acceleration hooks for screen-to-screen blitting, but each driver implements different accelerations. What video card and driver are you using? -- - Tim Roberts, [EMAIL PROTECTED] Providenza

Re: Starting XFree86 without an XF86Config file

2003-10-03 Thread Tim Roberts
. The lesson here is that a configuration UI needs to expose the things that need adjusting; it does NOT have to expose every feature of the hardware. -- - Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc. ___ Devel mailing list [EMAIL PROTECTED

RE: VideoRAM option

2003-10-02 Thread Tim Roberts
. I thought the amount of system RAM was fixed at boot time. -- - Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc. ___ Devel mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/devel

Re: embedded (GPL)Xfree86

2003-09-26 Thread Tim Roberts
also look at nanoX, which is part of Microwindows. -- - Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc. ___ Devel mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/devel

[XFree86] Mapping a frame-buffer for a larger virtual display into a 1meg card?

2003-09-13 Thread Tim Chase
it to do what I want. Any assistance would be most appreciated! Thanks, -tim ___ XFree86 mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/xfree86

Re: BitBlt for big Endian

2003-09-10 Thread Tim Roberts
0xff) 24 | ((tmp 0xff00) 8) | ((tmp 0xff) 8) | ((tmp 0xff00) 24); Some graphcs chips have both a little-endian and big-endian view of their frame buffers. You might check the CT 69030 docs to see if it does. -- - Tim Roberts, [EMAIL

Re: ansifying xwininfo.c

2003-09-09 Thread Tim Roberts
this is not ISO compliant. -- - Tim Roberts, [EMAIL PROTECTED] Providenza Boekelheide, Inc. ___ Devel mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/devel

  1   2   >