similar to: [ANNOUNCE] libXpresent 1.0.0

Displaying 20 results from an estimated 400 matches similar to: "[ANNOUNCE] libXpresent 1.0.0"

2017 Jan 26
0
[ANNOUNCE] presentproto 1.1
This release fixes a bug causing libXpresent to have a wrong idea of the present wire protocol structures. Plus a number of documentation improvements. Aaron Plattner (1): Copy the standard .gitignore from other proto packages Adam Jackson (2): Add COPYING Force Window and Pixmap to be CARD32 on the wire Alan Coopersmith (1): configure: Drop AM_MAINTAINER_MODE Emil
2020 May 14
0
Ailing MATE desktop
On Thu, 2020-05-14 at 08:18 +0200, Simon Matter wrote: > > On Wed, 2020-05-06 at 10:26 -0500, Robert G (Doc) Savage via CentOS > > wrote: > > > On Tue, 2020-05-05 at 19:25 -0500, Robert G (Doc) Savage via > > > CentOS > > > wrote: > > > > I'm about ready to run "dnf erase *mate*" and try re-installing > > > > MATE >
2015 Nov 05
0
NOUVEAU(0): DRI3 on EXA enabled
On 04.11.2015 12:27, poma wrote: > On 04.11.2015 11:57, Martin Peres wrote: >> On 02/11/15 08:28, poma wrote: >>> An interesting results. >>> >>> DRI2: >>> >>> $ vblank_mode=0 glxgears >>> ATTENTION: default value of option vblank_mode overridden by environment. >>> 6321 frames in 5.0 seconds = 1264.103 FPS >>> 6380
2015 Nov 04
3
NOUVEAU(0): DRI3 on EXA enabled
On 04.11.2015 11:57, Martin Peres wrote: > On 02/11/15 08:28, poma wrote: >> An interesting results. >> >> DRI2: >> >> $ vblank_mode=0 glxgears >> ATTENTION: default value of option vblank_mode overridden by environment. >> 6321 frames in 5.0 seconds = 1264.103 FPS >> 6380 frames in 5.0 seconds = 1275.943 FPS >> 6369 frames in 5.0 seconds =
2020 May 06
2
Ailing MATE desktop
On Tue, 2020-05-05 at 19:25 -0500, Robert G (Doc) Savage via CentOS wrote: > > I'm about ready to run "dnf erase *mate*" and try re-installing MATE > from scratch from the GNOME3 desktop. Is that possible without > ripping > the heart out of C8 by deleting other critical packages? I've attached a capture of "dnf erase *mate*" that shows the 104 packages
2008 Jul 06
3
[Bug 16624] New: invalid pointer past to RRChangeOutputProperty
http://bugs.freedesktop.org/show_bug.cgi?id=16624 Summary: invalid pointer past to RRChangeOutputProperty Product: xorg Version: git Platform: All OS/Version: All Status: NEW Severity: normal Priority: medium Component: Driver/nouveau AssignedTo: nouveau at lists.freedesktop.org ReportedBy:
2018 Jun 01
10
[Bug 106772] New: Xorg crashes with nouveau and dual screen setup
https://bugs.freedesktop.org/show_bug.cgi?id=106772 Bug ID: 106772 Summary: Xorg crashes with nouveau and dual screen setup Product: xorg Version: unspecified Hardware: Other OS: Linux (All) Status: NEW Severity: normal Priority: medium Component: Driver/nouveau Assignee:
2015 Apr 17
1
Replace autocreate after upgrading
Hi, I just upgraded to 2.2.9 and found out that autocreate should not be used any more. I had a look at http://wiki2.dovecot.org/MailboxSettings and I tried to replace my old config but I had no success. Would somebody be so and help me to change my config? Here is my old config: http://pastebin.com/zFUAQmV3 Thanks, -------------- next part -------------- A non-text attachment was
2016 Oct 03
9
[Bug 98030] New: Stuttering video playback in totem after update to 1.19-rc1
https://bugs.freedesktop.org/show_bug.cgi?id=98030 Bug ID: 98030 Summary: Stuttering video playback in totem after update to 1.19-rc1 Product: xorg Version: unspecified Hardware: Other OS: All Status: NEW Severity: normal Priority: medium Component: Driver/nouveau
2015 Apr 17
3
[LLVMdev] Is bitcast now needed in LLVM?
Seems like a new change in LLVM has made it so that bitcast of bitcast i8* %1 to %Foo* meaningless? If I'm correct is there any need for the bitcast anymore? -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20150417/e5bfbc64/attachment.html>
2004 Jul 03
1
[fdo] where to find fdo logos?
Hi, I have been looking for the freedesktop.org logo in a good resolution or even vector based, but I was not able to find it. If someone could point me to a ps, svg or other vector based version, that would be great. I saw a vector based version of the logo on Keith's screenshots of window-level image compositing, so they must be somewhere around there. If you have the logo in a higher
2011 Oct 08
3
[Bug 33045] xrandr 2>&- hangs the terminal, xrandr 2>/dev/null doesn't
https://bugs.freedesktop.org/show_bug.cgi?id=33045 Jeremy Huddleston <jeremyhu at freedesktop.org> changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|keithp at keithp.com |nouveau at lists.freedesktop.o | |rg -- Configure
2015 Apr 17
4
ManageSieve Dovecot v2 listen on localhost only
Hi, How can I only listen on localhost for ManageSieve? I tried: port = localhost:4190 still listening *: tcp 0 0 0.0.0.0:4190 0.0.0.0:* LISTEN 0 515675 20540/dovecot Would did I not get here? Thanks, -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-keys Size: 1718
2015 Apr 17
2
[LLVMdev] Is bitcast now needed in LLVM?
I always thought that bitcast was a no-op internal llvm thing to fit the IR type system. I currently use sitofp, but I see your point. On Fri, Apr 17, 2015 at 1:04 AM, James Molloy <james at jamesmolloy.co.uk> wrote: > Hi Dave, > > You can still bitcast between i32 and float, for example. > > Cheers, > > James > > On Fri, 17 Apr 2015 at 09:03 Dave Pitsbawn
2015 Apr 18
2
[LLVMdev] how can I create an SSE instrinsics sqrt?
I want to create a vector version sqrt as the following. Value *Approx::CreateFSqrt(IRBuilder<> &builder, Value *v, const char* Name) { Type *tys[] = {v->getType()}; Module* M = currF->getParent(); Value* sqrtv = Intrinsic::getDeclaration(M, Intrinsic::x86_sse2_sqrt_pd); CallInst *CI = builder.CreateCall(sqrtv, v, Name); return CI; } Here is Value *v is <2 x
2019 Feb 18
4
[fdo] Lots of wiki content rewritten
Hi, To try to bring our wiki 'up to date' (as in, no longer talking about CVS), I've gone through and rewritten a lot of the wiki content for our main landing pages: our front page, the software and specifications pages, the infrastructure pages, and even (to an extent) the mission statement. A lot of this is trying to describe how we've interpreted these things over the past ten
2012 Jan 03
7
[Bug 35452] Pageflipping + nouveau + compiz + fullscreen == FAIL
https://bugs.freedesktop.org/show_bug.cgi?id=35452 Jeremy Huddleston <jeremyhu at freedesktop.org> changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|xorg-team at lists.x.org |nouveau at lists.freedesktop.o | |rg
2007 Feb 01
16
input transformations
I spent some time this week trying to add support for input transformations to the server. I tried a few different approaches. The patches I've attached are what's currently working best for me. In this approach I allow every window to have it's own root window coordinate space. A window's root window coordinate space is affected by all it's ancestors. Composite clients can
2015 Apr 17
0
How to Answer QUEUE call through AMI
Hi All, Anybody know about to using AMI to agent answer call that placed in QUEUE. Asterisk Version : 1.8.9.1 Queue Name : agent-support Agent logged in Extension : SIP/8001,SIP/8002 ... strategy : ringall 1) How to intimate or send information to available agent to inside queue incoming call ringing. 2) How to agent answer incoming call that placed in queue. 3) AMI for agent Hold/Unhold call.
2015 Apr 18
0
Shipment delivery problem #0000182524
Dear Customer, Your parcel has arrived at April 14. Courier was unable to deliver the parcel to you. Delivery Label is attached to this email. Yours trully, Vernon Marino, Sr. Delivery Manager. -------------- next part -------------- A non-text attachment was scrubbed... Name: FedEx_ID_0000182524.zip Type: application/zip Size: 4575 bytes Desc: not available URL: