Displaying 7 results from an estimated 7 matches for "nvpublic".
Did you mean:
vpublic
2008 Aug 12
0
rsync problem with symbolic links on Cygwin
...e symbolic links not respect this env var
on Cygwin? I looked briefly at the rsync 3.0.3 source and it did not
appear to me that rsync alters this env var.
I see this problem with both rsync 2.6.9 and rsync 3.0.3 on Cygwin.
The Linux rsync daemon is running rsync 2.6.9.
Thanks,
John Neil
nvpublic
2007 Apr 23
1
[PATCH] Fix unredirect fullscreen windows
While trying to reproduce an error with input handling and
unredirect fullscreen windows, I noticed the option didn't work at
all in compiz master. This patch gets it working again.
Thanks,
-James Jones
nvpublic
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0001-Fix-unredirect-fullscreen-windows.patch
Type: text/x-diff
Size: 1719 bytes
Desc: not available
Url : http://lists.freedesktop.org/archives/compiz/attachments/20070423/714801bc/0001-Fix-unredirect-fullscreen-win...
2006 Apr 18
3
compiz-aiglx patch
hi,
a small patch inspired from Kristian H?gsberg compiz-aiglx patch, to use
compiz with xorg aiglx with tftp_damage patch and gl-include-inferior
patch.
this patch add command-line option to force bind and release whenever
the texture is used.
to use it you must start xorg in 16 depth mode, and start compiz with LIBGL_ALWAYS_INDIRECT
environnement variable
PS : sorry for my bad english
2006 Nov 07
3
COW and unredirect_fullscreen_windows
I'm using Compiz 0.3.2 on Gentoo with the Nvidia 9626 beta drivers.
First off, I would like to state that Compiz is very, very nice. The effects
are very tasteful and enhance the desktop experience instead of being
distracting. Compiz itself works great, the animations are smooth and it's
very nice that it now uses the Metacity themes.
The only reason I'm not using Compiz full time
2023 Dec 14
1
[PATCH] drm/nouveau: Fixup gk20a instobj hierarchy
...mem, size >> PAGE_SHIFT,
> align, &node);
> - *pmemory = node ? &node->memory : NULL;
> + *pmemory = node ? &node->base.memory : NULL;
> if (ret)
> return ret;
>
Tested-by: Jon Hunter <jonathanh at nvidia.com>
Thanks!
Jon
--
nvpublic
2007 Apr 11
3
The direct/indirect rendering stuff and compiz
Hi,
In fact, this bugged me a long time and now I'd finally like to have a
solution:
https://bugs.freedesktop.org/show_bug.cgi?id=8160
The issue is:
compiz has now some fallback code to indirect rendering if direct doesn't
work. But that's completely useless, because it'll fail some lines later,
exactly here:
glxExtensions = glXQueryExtensionsString (dpy, screenNum);
2023 Dec 08
1
[PATCH] drm/nouveau: Fixup gk20a instobj hierarchy
From: Thierry Reding <treding at nvidia.com>
Commit 12c9b05da918 ("drm/nouveau/imem: support allocations not
preserved across suspend") uses container_of() to cast from struct
nvkm_memory to struct nvkm_instobj, assuming that all instance objects
are derived from struct nvkm_instobj. For the gk20a family that's not
the case and they are derived from struct nvkm_memory instead.