Displaying 20 results from an estimated 23 matches for "glint".
Did you mean:
clint
2017 Jan 17
0
[ANNOUNCE] xf86-video-glint 1.2.9
Adam Jackson (3):
Remove mibstore.h
Pass the pci device through to fbdevHWInit
Adapt Block/WakeupHandler signature for ABI 23
Matt Turner (1):
xf86-video-glint 1.2.9
Michael Lorenz (1):
Fix I2C for DDC2.
git tag: xf86-video-glint-1.2.9
https://xorg.freedesktop.org/archive/individual/driver/xf86-video-glint-1.2.9.tar.bz2
MD5: 3d166b7a97d96007272ffc153d5f81fd xf86-video-glint-1.2.9.tar.bz2
SHA1: 93b56f77d5d57f7b8746f58a5098a05ca9825b1d xf86-vide...
2008 Mar 19
0
[ANNOUNCE] xf86-video-glint 1.2.0
Adam Jackson (2):
Fix distcheck
glint 1.2.0
Alan Hourihane (1):
Fix --disable-dri for glint driver
Brice Goglin (1):
Define GLINT_*_VERSION* using PACKAGE_VERSION_*
Dave Airlie (4):
half attempt at pciaccess conversion for glint - doesn't build yet
fix typos in dac code from last commit
hey look a f...
2008 Jun 30
0
[ANNOUNCE] xf86-video-glint 1.2.1
Julien Cristau (2):
Fix regression from pciaccess conversion (bug#16060)
Bump to 1.2.1
git tag: xf86-video-glint-1.2.1
http://xorg.freedesktop.org/archive/individual/driver/xf86-video-glint-1.2.1.tar.bz2
MD5: 6d7afdac0a26cf201c3f3b417c31c5e1 xf86-video-glint-1.2.1.tar.bz2
SHA1: 9e4959c2a39c22bf4a81b1eba4ec809f9c571bc8 xf86-video-glint-1.2.1.tar.bz2
http://xorg.freedesktop.org/archive/individual/driver/xf8...
2012 Apr 06
1
[WIP PATCH] dri/nouveau: Add S3TC support for nv20.
....Map + y * s->pitch + x * s->cpp;
+ *map = nti->base.Map +
+ nouveau_format_get_nblocksy(s->format, y) * s->pitch +
+ nouveau_format_get_nblocksx(s->format, x) * s->cpp;
*stride = s->pitch;
}
}
@@ -291,7 +301,24 @@ nouveau_choose_tex_format(struct gl_context *ctx, GLint internalFormat,
case GL_INTENSITY8:
return MESA_FORMAT_I8;
+ case GL_RGB_S3TC:
+ case GL_RGB4_S3TC:
+ case GL_COMPRESSED_RGB_S3TC_DXT1_EXT:
+ return MESA_FORMAT_RGB_DXT1;
+
+ case GL_COMPRESSED_RGBA_S3TC_DXT1_EXT:
+ return MESA_FORMAT_RGBA_DXT1;
+
+ case GL_RGBA_S3TC:
+ case GL_RGBA4_S3TC:...
2014 Sep 13
2
[PATCH] nouveau: fix glCompressedTexImage
...uveau/nouveau_texture.c
index 4626cc3..dc5699c 100644
--- a/src/mesa/drivers/dri/nouveau/nouveau_texture.c
+++ b/src/mesa/drivers/dri/nouveau/nouveau_texture.c
@@ -413,6 +413,31 @@ get_teximage_placement(struct gl_texture_image *ti)
}
static void
+nouveau_compressed_copy(struct gl_context *ctx, GLint dims,
+ struct gl_texture_image *ti,
+ GLsizei width, GLsizei height, GLsizei depth,
+ const GLvoid *src, GLvoid *dst, int row_stride)
+{
+ struct compressed_pixelstore store;
+ int i;
+
+ _mesa_compute_compressed_pixelstore(dims, ti->TexFormat,
+ width, height, depth,
+ &a...
2006 Apr 09
2
EXT_texture_from_pixmap update
Patch for mesa with a set of updates for EXT_tfp. Includes necessary
FBConfig support, adds attrib_list to BindTexImage and fixes
CreateDrawable so that glXCreatePixmap works.
Xgl and compiz requires this patch.
Can I commit this to head?
-David
-------------- next part --------------
A non-text attachment was scrubbed...
Name: mesa-tfp-update-1.patch
Type: text/x-patch
Size: 8154 bytes
Desc:
2006 Jun 26
1
Patch for rgl with gcc 4.0 in R 2.3.0 on OS X
...H
-I/opt/local/include/libpng12 -msse3 -fPIC -fno-common -g -O2
-march=pentium-m -mtune=prescott -c api.cpp -o api.o
api.cpp: In function 'void rgl_user2window(int*, int*, double*, double*,
double*, double*, int*)':
api.cpp:608: error: invalid conversion from 'int*' to 'const GLint*'
api.cpp:608: error: initializing argument 6 of 'GLint gluProject(GLdouble,
GLdouble, GLdouble, const GLdouble*, const GLdouble*, const GLint*,
GLdouble*, GLdouble*, GLdouble*)'
api.cpp: In function 'void rgl_window2user(int*, int*, double*, double*,
double*, double*, int*)':...
2005 Jul 19
0
Problems in rgl on MacOS X
...virtual functions but
non-virtual destructor
pixmap.h:39: warning: 'class PixmapFormat' has virtual functions but
non-virtual destructor
scene.cpp: In member function 'void Texture::beginUse(RenderContext*)':
scene.cpp:1994: error: invalid conversion from 'int*' to 'GLint*'
make: *** [scene.o] Error 1
ERROR: compilation failed for package 'rgl'
The compilers complaint appears to be legitimate in gl.h there is:
......
typedef short GLshort;
typedef long GLint;
typedef long GLsizei;
........
extern void glGetHistogramParameteriv (GLenum target, GLenum pna...
2014 Sep 14
1
[PATCH] nouveau: fix glCompressedTexImage
...; --- a/src/mesa/drivers/dri/nouveau/nouveau_texture.c
>> +++ b/src/mesa/drivers/dri/nouveau/nouveau_texture.c
>> @@ -413,6 +413,31 @@ get_teximage_placement(struct gl_texture_image *ti)
>> }
>>
>> static void
>> +nouveau_compressed_copy(struct gl_context *ctx, GLint dims,
>> + struct gl_texture_image *ti,
>> + GLsizei width, GLsizei height, GLsizei depth,
>> + const GLvoid *src, GLvoid *dst, int row_stride)
>> +{
>> + struct compressed_pixelstore store;
>> +...
2014 Sep 14
0
[PATCH] nouveau: fix glCompressedTexImage
...c3..dc5699c 100644
> --- a/src/mesa/drivers/dri/nouveau/nouveau_texture.c
> +++ b/src/mesa/drivers/dri/nouveau/nouveau_texture.c
> @@ -413,6 +413,31 @@ get_teximage_placement(struct gl_texture_image *ti)
> }
>
> static void
> +nouveau_compressed_copy(struct gl_context *ctx, GLint dims,
> + struct gl_texture_image *ti,
> + GLsizei width, GLsizei height, GLsizei depth,
> + const GLvoid *src, GLvoid *dst, int row_stride)
> +{
> + struct compressed_pixelstore store;
> + int i;
> +
> + _mesa_compute_compressed_pixelstore(dims, ti->TexFormat,
>...
2013 Oct 04
1
[PATCH] nouveau_vieux: add AllocTextureImageBuffer implementation
...tx->Unpack, GL_TRUE);
}
+static GLboolean
+nouveau_teximage_alloc(struct gl_context *ctx, struct gl_texture_image *ti)
+{
+ nouveau_teximage(ctx, 3, ti, 0, 0, 0, NULL,
+ &ctx->DefaultPacking, GL_FALSE);
+ return GL_TRUE;
+}
+
static void
nouveau_texsubimage(struct gl_context *ctx, GLint dims,
struct gl_texture_image *ti,
@@ -634,6 +642,7 @@ nouveau_texture_functions_init(struct dd_function_table *functions)
functions->DeleteTexture = nouveau_texture_free;
functions->NewTextureImage = nouveau_teximage_new;
functions->FreeTextureImageBuffer = nouveau_teximage_f...
2010 Apr 18
3
loops and if statements
...just turns the whole thing into a list.
.
Although if:
c <- NA
d <- cbind(a, b, c)
and I coerce d into a data.frame, run:
d$c <- for(i in seq(along=d[,2])) {if (d[i]=="meep") { print("oops")}
else { print("yay")}
}
some glint of hope appears:
[1] "yay"
[1] "oops"
but then......
Error in if (d[i] == "meep") { : missing value where TRUE/FALSE needed
In addition: Warning messages:
1: In if (d[i] == "meep") { :
the condition has length > 1 and only the first element will be...
2015 May 07
2
[LLVMdev] llvm cross compilation and simplescalar simulation for ARM
Hi,
I want to explorer affection of compiler on low power.
For the project background, I tend to process this work via LLVM, rather than GCC. And the Target is ARM.
For this purpose, clang(3.2) + arm-gcc + simplescalar-arm(and panalyzer) seems to be a good choice. But I encounter several problems in the processing of setup the environment.
----------------------------------
1. Firstly, arm
2006 Aug 26
0
3DLabs Wildcat
Hi all,
Has anybody managed to make this board: 3DLabs Wildcat III 6210
work under CentOS 4/Xorg ? I see on their website they had support
for it until RHEL3 but no more support for RHEL4...
I tried the 'glint' driver but it does not support this particular
chipset. I tried the 'vesa' mode and I could get a 640x480 @ 60Hz
but it's a little hard to work at that resolution ;)
Any thoughts?
TIA,
Alex
2012 Jul 06
0
[PATCH] dri/nouveau: Add AllocTextureImageBuffer() implementation
...MESA_FORMAT_L8 ||
- ti->TexFormat == MESA_FORMAT_I8)
- /* 1 cpp formats will have to be swizzled by the CPU,
- * so leave them in system RAM for now. */
- return NOUVEAU_BO_MAP;
- else
- return NOUVEAU_BO_GART | NOUVEAU_BO_MAP;
-}
-
static void
nouveau_teximage(struct gl_context *ctx, GLint dims,
struct gl_texture_image *ti,
@@ -704,7 +744,8 @@ nouveau_texture_functions_init(struct dd_function_table *functions)
functions->NewTextureObject = nouveau_texture_new;
functions->DeleteTexture = nouveau_texture_free;
functions->NewTextureImage = nouveau_teximage_new;
- func...
2009 Feb 13
4
running x.org on powerpc64 with nvidia6200
...c/976, 0x1020bd9c/976, BIOS @
0x????????/270581148
List of video drivers:
nouveau
mga
i740
sis
savage
i128
mach64
trident
tdfx
s3virge
dummy
r128
cirrus
siliconmotion
ati
glint
v4l
sisusb
rendition
radeon
apm
ast
voodoo
fbdev
vesa
(II) LoadModule: "nouveau"
(II) Loading /usr/lib/xorg/modules/drivers//nouveau_drv.so
(II) Module nouveau: vendor="X.Org Foundation"
compiled fo...
1999 Apr 20
3
Printer Questions
Hello and thanks for indulging yet another printer question.
Here at the University of Denver we have formally announced that laptops
will be a requirement for all incoming freshmen in the Fall. I have been
charged with the task of finding a solution for printing (accounting,
quotas, and managing roaming users). I've decided, for now, to use Samba
with an eval copy of printXchange (this will
2010 Nov 12
2
X11R7.6 Release Candidate 1
...xf86-video-cirrus 1.3.2 1.3.2
xf86-video-dummy 0.3.2 0.3.4
xf86-video-fbdev 0.4.1 0.4.2
xf86-video-geode 2.11.6 2.11.10
xf86-video-glide 1.0.3 1.1.0
xf86-video-glint 1.2.4 1.2.5
xf86-video-i128 1.3.3 1.3.4
xf86-video-i740 1.3.2 1.3.2
xf86-video-intel 2.9.1 2.13.0
xf86-video-mach64 6.8.2 6.8.2
xf86-video-mga 1.4.11 1.4.13...
2009 Mar 02
0
[PATCH 4 of 13] DisplayState interface change
...bbed */
static int last_vm_running;
static int gui_saved_grab;
@@ -52,17 +53,15 @@
static SDL_Cursor *sdl_cursor_hidden;
static int absolute_enabled = 0;
static int opengl_enabled;
-static uint8_t bgr;
-
-static void sdl_colourdepth(DisplayState *ds, int depth);
#ifdef CONFIG_OPENGL
static GLint tex_format;
static GLint tex_type;
static GLuint texture_ref = 0;
static GLint gl_format;
+static uint8_t bgr;
-static void opengl_setdata(DisplayState *ds, void *pixels)
+static void opengl_setdata(DisplayState *ds)
{
glEnable(GL_TEXTURE_RECTANGLE_ARB);
glTexEnvi(GL_TEXTURE_ENV, GL...
2013 Jan 16
13
[Bug 59474] New: fedora 18 X server crashes after boot
https://bugs.freedesktop.org/show_bug.cgi?id=59474
Priority: medium
Bug ID: 59474
Assignee: nouveau at lists.freedesktop.org
Summary: fedora 18 X server crashes after boot
QA Contact: xorg-team at lists.x.org
Severity: normal
Classification: Unclassified
OS: Solaris
Reporter: dax at enst.fr