search for: 24x24

Displaying 20 results from an estimated 24 matches for "24x24".

Did you mean: 2424
2015 Aug 10
2
"enable dri3 support without glamor" causes gnome-shell regression on nv4x
...sage 0 flags 0 @@ -12,6 +12,7 @@ nv30_miptree_create 256x256 uniform_pitch 0 usage 0 flags 0 nv30_miptree_create 512x512 uniform_pitch 0 usage 0 flags 0 nv30_miptree_create 48x48 uniform_pitch 192 usage 0 flags 0 +nv30_miptree_create 16x16 uniform_pitch 0 usage 0 flags 0 nv30_miptree_create 24x24 uniform_pitch 128 usage 0 flags 0 nv30_miptree_create 24x24 uniform_pitch 128 usage 0 flags 0 nv30_miptree_create 24x24 uniform_pitch 128 usage 0 flags 0 @@ -20,29 +21,24 @@ nv30_miptree_create 24x24 uniform_pitch 128 usage 0 flags 0 nv30_miptree_create 24x24 uniform_pitch 128 usage 0 flags...
2007 Oct 29
0
5 commits - data/icons
data/icons/16x16/Makefile.am | 3 +++ data/icons/22x22/Makefile.am | 3 +++ data/icons/24x24/Makefile.am | 3 +++ data/icons/32x32/Makefile.am | 3 +++ data/icons/48x48/Makefile.am | 3 +++ data/icons/scalable/Makefile.am | 3 +++ 6 files changed, 18 insertions(+) New commits: commit 797ff16e0578aff66902b701d7bd77351e6eb55d Merge: 6674b8f... 2586d9b... Author: Stephan...
2019 Feb 06
4
[PATCH 0/3] inspect: icon improvements for Mageia & *SUSE
See individual patches. Pino Toscano (3): inspect: bump size limit for Mageia guests inspect: factor out find_png helper function inspect: revamp icon extraction for *SUSE guests lib/inspect-icon.c | 39 +++++++++++++++++++++++++-------------- 1 file changed, 25 insertions(+), 14 deletions(-) -- 2.20.1
2015 Aug 03
2
"enable dri3 support without glamor" causes gnome-shell regression on nv4x
Hi, On 03-08-15 17:36, Ilia Mirkin wrote: > On Mon, Aug 3, 2015 at 9:02 AM, Hans de Goede <hdegoede at redhat.com> wrote: >> Hi, >> >> On 30-07-15 16:09, Ilia Mirkin wrote: >>> >>> FWIW this is a fail on nv50+ as well. See for example >>> https://bugs.freedesktop.org/show_bug.cgi?id=91445 >>> >>> My suspicion is that this is
2007 Oct 19
0
4 commits - configure.ac data/.gitignore data/icons data/Makefile.am data/swfdec-gtk.pc.in data/swfdec.pc.in .gitignore Makefile.am player/swfplay.c swfdec-gtk.pc.in swfdec.pc.in
...ignore | 3 Makefile.am | 16 -- configure.ac | 11 + data/.gitignore | 3 data/Makefile.am | 30 +++ data/icons/22x22/Makefile.am | 2 data/icons/22x22/swfdec.png |binary data/icons/24x24/Makefile.am | 2 data/icons/24x24/swfdec.png |binary data/icons/32x32/Makefile.am | 2 data/icons/32x32/swfdec.png |binary data/icons/48x48/Makefile.am | 2 data/icons/48x48/swfdec.png |binary data/icons/Makefile.am | 1 data/icons/scalable/Makefile....
2007 Oct 21
0
2 commits - AUTHORS configure.ac data/icons
...add proper images for 16x16 and 22x22 diff --git a/configure.ac b/configure.ac index 04ada89..97d474b 100644 --- a/configure.ac +++ b/configure.ac @@ -319,6 +319,7 @@ AC_CONFIG_FILES( Makefile data/Makefile data/icons/Makefile +data/icons/16x16/Makefile data/icons/22x22/Makefile data/icons/24x24/Makefile data/icons/32x32/Makefile diff --git a/data/icons/16x16/Makefile.am b/data/icons/16x16/Makefile.am new file mode 100644 index 0000000..a9625f1 --- /dev/null +++ b/data/icons/16x16/Makefile.am @@ -0,0 +1,2 @@ +icondir = $(datadir)/icons/hicolor/16x16/apps +icon_DATA = swfdec.png diff --git...
2019 Feb 06
0
[PATCH 3/3] inspect: revamp icon extraction for *SUSE guests
.../lib/inspect-icon.c b/lib/inspect-icon.c index 0cc8e92ad..623591aa6 100644 --- a/lib/inspect-icon.c +++ b/lib/inspect-icon.c @@ -354,12 +354,16 @@ icon_mageia (guestfs_h *g, size_t *size_r) return get_png (g, MAGEIA_ICON, size_r, 10240); } -#define OPENSUSE_ICON "/usr/share/icons/hicolor/24x24/apps/distributor.png" - static char * icon_opensuse (guestfs_h *g, size_t *size_r) { - return get_png (g, OPENSUSE_ICON, size_r, 2048); + const char *icons[] = { + "/usr/share/icons/hicolor/48x48/apps/distributor.png", + "/usr/share/icons/hicolor/24x24/apps/distributo...
2005 Feb 22
0
[fdo] hicolor icon theme
As I recall, we get the hicolor icon theme from you guys. I looked for it in your bug tracker, but couldn't find that package/prodect listed. Anyway, the "24x24/actions" and "24x24/filesystems" are misspelled in the long list of icon directories in the index.theme file. (They are singular instead of plural.) Probably the distros are fixing it themselves. I too have now fixed my copy, but it would be really cool if one of you good souls would...
2016 Jul 05
1
[PATCH 1/2] inspection: Find Ubuntu logo from an alternate location (RHBZ#1352761).
...!highquality) + r = icon_ubuntu (g, fs, &size); break; case OS_DISTRO_MAGEIA: @@ -349,12 +350,29 @@ icon_debian (guestfs_h *g, struct inspect_fs *fs, size_t *size_r) return get_png (g, fs, DEBIAN_ICON, size_r, 2048); } -#define UBUNTU_ICON "/usr/share/icons/gnome/24x24/places/ubuntu-logo.png" - static char * icon_ubuntu (guestfs_h *g, struct inspect_fs *fs, size_t *size_r) { - return get_png (g, fs, UBUNTU_ICON, size_r, 2048); + const char *icons[] = { + "/usr/share/icons/gnome/24x24/places/ubuntu-logo.png", + + /* Very low quality and o...
2007 Mar 19
4
exec: 29: /usr/bin/wine: not found
Hi, I?ve installed wine on Ubuntu 6.10 64bit using the following guide : http://www.ubuntuforums.org/showthread.php?t=185557 but, when I type winecfg in Terminal I get the following error : exec: 29: /usr/bin/wine: not found Dunno if it may help, but here?s a terminal shot of when wine was getting installed. matt@ubuntu:~/Desktop$ dpkg -x lib libartsc0_1.3.2-3_amd64.deb
2007 May 31
0
Permanent of a matrix
...mpts to figure out a working script (see below) have failed. (That is, I don't get the same answer as when I calculate the permanent in Maple or Mathematica.) My understanding and experience is that it can be an exceedingly difficult (memory intensive) calculation for matrices larger than ~24x24 (which also suggests that there is something wrong in the way I've coded this) but I can't seem to figure out where my error lies; whether it's in my code or in my understanding of how a matrix permanent is defined. Thanks in advance -Mark perm<-function(A){ m<-dim(A)...
2010 Dec 22
0
image_tag and send_data
...ype, :disposition => ''inline'') unless item.image_binary.nil? end end and i have this code in view: <%items.each do |item|%> ... <%=image_tag(url_for(:action => :image, :id => item.id), :alt => item.name+'' image'', :size => ''24x24'')%> .. <%end> everything works fine except that i have separate SELECT queries to database on EACH loading image. in view i''m iterating collection of "items", so i have all neccessary data and i don''t want to select it from database again. Is there...
2011 Oct 13
9
[PATCH 1/9] Partially fix --disable-erlang
From: Michael Scherer <misc at zarb.org> Without this, configure will always enable erlang, no matter what argument are passed. Now, we can disable it, even if configure still need the erlang compiler for some obscure reason. --- configure.ac | 10 ++++++---- 1 files changed, 6 insertions(+), 4 deletions(-) diff --git a/configure.ac b/configure.ac index 337a3ed..e0bed2f 100644 ---
2006 Nov 08
2
Problems with yum/rpm and %pre scriptlet error 255
I am running xen (2.6.16-xen3_86.1_rhel4.1) on top of a stock CentOS-4.4 installation. I have not added any additional virtual machines however. When trying to install (as root) acrobat reader 7 for Linux from the adobe rpm (AdobeReader_enu.i386 7.0.8-1) I get the following errors: error: %pre(AdobeReader_enu-7.0.8-1.i386) scriptlet failed, exit status 255 error: install: %pre scriptlet
2019 Feb 11
4
Samba and ufw
...hare/icons/Mint-Y/apps/96/gufw_menu.png /usr/share/icons/Mint-Y/apps/96 at 2x/gufw.png /usr/share/icons/Mint-Y/apps/96 at 2x/gufw_menu.png /usr/share/icons/gnome-colors-common/16x16/apps/gufw_menu.png /usr/share/icons/gnome-colors-common/22x22/apps/gufw_menu.png /usr/share/icons/gnome-colors-common/24x24/apps/gufw_menu.png /usr/share/icons/gnome-colors-common/32x32/apps/gufw_menu.png /usr/share/icons/gnome-colors-common/scalable/apps/gufw_menu.svg /usr/share/locale-langpack/en_AU/LC_MESSAGES/ufw.mo /usr/share/locale-langpack/en_CA/LC_MESSAGES/ufw.mo /usr/share/locale-langpack/en_GB/LC_MESSAGES/ufw....
2012 Apr 27
0
Wine release 1.5.3
...obe Dreamweaver CS3 Installer crash if you reject the license 15606 Lotr Bfme2: Big parts of characters appear in a glowing white 19435 Some winsock calls will crash when passing NULL as protocol parameter 20102 Runes of magic is unable to save configuration settings 20566 icons of size 24x24 are black 20770 FineReader 8 crashes after importing images into an empty batch 20839 Blue particles where there should be only fog in Age of Empires III trial. 21269 Babylon 5 - I've F?ound Her: crashes when colliding with objects if using a joystick 22767 Ragnarok and deforming so...
2007 Nov 15
2
Changes to 'refs/tags/0.5.4'
Tag '0.5.4' created by Benjamin Otte <otte at gnome.org> at 2007-11-15 10:12 -0800 release 0.5.4 ("Turkish Cycling Federation") -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQBHPBurvMv5VCdLq8QRAj1KAJ40NHRRS3gKyJjSjyyoH7gDaGi/tQCeOha/ R5PF4bZQqmSdJ64t8EbD4cA= =8qBy -----END PGP SIGNATURE----- Changes since the dawn of time: Benjamin Otte (40):
2017 Jul 21
10
[PATCH v10 00/10] Reimplement inspection in the daemon.
v9 was here: https://www.redhat.com/archives/libguestfs/2017-July/msg00139.html This depends on these three series (the first two being single minor patches): https://www.redhat.com/archives/libguestfs/2017-July/msg00207.html https://www.redhat.com/archives/libguestfs/2017-July/msg00209.html https://www.redhat.com/archives/libguestfs/2017-July/msg00215.html There is no substantive change. I
2017 Jul 17
12
[PATCH v9 00/11] Reimplement inspection in the daemon.
This depends on the patch series "[PATCH 00/27] Reimplement many daemon APIs in OCaml." (https://www.redhat.com/archives/libguestfs/2017-July/msg00098.html) v8 was posted here: https://www.redhat.com/archives/libguestfs/2017-June/msg00274.html v9: - I split up the mega-patch into a more reviewable series of smaller, incremental patches. There are some other changes vs v8, but
2017 Aug 09
16
[PATCH v12 00/11] Reimplement inspection in the daemon.
This fixes almost everything. Note that it adds an extra commit which fixes the whole utf8/iconv business. It's probably better to list what isn't fixed: (1) I didn't leave the osinfo code around because I'm still haven't looked too closely at virt-builder-repository. Can't we just fetch this code from the git history when we need it? (2) I didn't change the way