Displaying 20 results from an estimated 53 matches for "i965".
Did you mean:
i915
2014 Apr 04
1
[Mesa-dev] [PATCH 2/2] docs: mark ARB_texture_gather as done on nvc0
...t; diff --git a/docs/GL3.txt b/docs/GL3.txt
> index d9cc708..bf51e3a 100644
> --- a/docs/GL3.txt
> +++ b/docs/GL3.txt
> @@ -107,7 +107,7 @@ GL 4.0:
> GL_ARB_tessellation_shader not started
> GL_ARB_texture_buffer_object_rgb32 DONE (i965, nvc0, r600, radeonsi, softpipe)
> GL_ARB_texture_cube_map_array DONE (i965, nv50, nvc0, r600, softpipe)
> - GL_ARB_texture_gather DONE (i965, nv50)
> + GL_ARB_texture_gather DONE (i965, nv50, nvc0)...
2014 Apr 04
2
[PATCH 1/2] nvc0: add support for texture gather
Signed-off-by: Ilia Mirkin <imirkin at alum.mit.edu>
---
Tested on NVE6. Very strange that it seems to use 8 bits for offsets, vs 4
bits used by texelFetch. But this passes the piglit tests.
Will test on a NVCX before checking in, in case it's different
there. (Although that'd be surprising, given the similarities between the 2
ISAs.)
2010 Dec 10
0
[ANNOUNCE] xf86-video-intel 2.13.902
...have to help us
test it! So without further ado, here is the first release candidate for
2010Q4.
-Chris
Chris Wilson (26):
uxa: Fix crash after allocation failure
i915: Disable maximum state addresses
uxa: Relax fencing some more for gen3
Disable BLT for i830 and 845G
i965: Use reciprocal scale factors to avoid the divide per-vertex-element
i965: Upload an entire vbo in a single pwrite, rather than per-rectangle
i965: Amalgamate surface binding tables
Wait on the current buffer to complete when running synchronously.
i965: Check for potential...
2015 May 24
2
[RFC PATCH 00/11] Implement ARB_cull_distance
...mesa/main: add support for GL_ARB_cull_distance
>> mesa/prog: Add varyings for arb_cull_distance
>> mesa/st: add support for GL_ARB_cull_distance
>> glsl: Add a helper to see if an array was unsize in the shader
>> glsl: Add arb_cull_distance support
>> i965: rename UsesClipDistanceOut to UsesClipCullDistanceOut
>> gallium: add support for arb_cull_distance
>> nouveau/codegen: sort in galliums cull_distance semantic into the
>> drivers bitmask
>> nouveau/nvc0: implement cull_distance as a special form of clip
>&...
2015 May 24
2
[RFC PATCH 00/11] Implement ARB_cull_distance
...nce
>>>> mesa/prog: Add varyings for arb_cull_distance
>>>> mesa/st: add support for GL_ARB_cull_distance
>>>> glsl: Add a helper to see if an array was unsize in the shader
>>>> glsl: Add arb_cull_distance support
>>>> i965: rename UsesClipDistanceOut to UsesClipCullDistanceOut
>>>> gallium: add support for arb_cull_distance
>>>> nouveau/codegen: sort in galliums cull_distance semantic into the
>>>> drivers bitmask
>>>> nouveau/nvc0: implement cull_dist...
2011 Jul 22
0
Direct rendering disabled on intel i965 (Morrowind&Debian)
Hi,
I am running Debian wheezy on my ThinkPad laptop. My architecture is amd64, the graphics card is an Intel i965 and I am using wine 1.3.24 from http://dev.carbon-project.org/debian/wine-unstable
My problem is that Morrowind runs really slow, around 5-10 FPS, completely unplayable.
I tried setting LIBGL_DRIVERS_PATH=/usr/lib32/dri but that didn't make a difference. Running it with/without desktop effect...
2014 Apr 04
0
[PATCH 2/2] docs: mark ARB_texture_gather as done on nvc0
..., 1 insertion(+), 1 deletion(-)
diff --git a/docs/GL3.txt b/docs/GL3.txt
index d9cc708..bf51e3a 100644
--- a/docs/GL3.txt
+++ b/docs/GL3.txt
@@ -107,7 +107,7 @@ GL 4.0:
GL_ARB_tessellation_shader not started
GL_ARB_texture_buffer_object_rgb32 DONE (i965, nvc0, r600, radeonsi, softpipe)
GL_ARB_texture_cube_map_array DONE (i965, nv50, nvc0, r600, softpipe)
- GL_ARB_texture_gather DONE (i965, nv50)
+ GL_ARB_texture_gather DONE (i965, nv50, nvc0)
GL_ARB_transf...
2009 Feb 24
2
[ANNOUNCE] xf86-video-intel 2.6.2
...A LVDS, TV outputs.
Eric Anholt (23):
Remove logical context setup.
Fix compile failure after 45f45c73469f1bd46a1b6fb206f2e9e5e4fd66b3
warning fix.
Move 965 video setup to a separate function so we can move it around.
Do check_aperture_space and batch_start_atomic for i965 video.
Move i965 render state bo setup back to prepare_composite.
Use intel_emit_reloc from video to prettify 965 render bind_bo setup.
Move filter computation from emit_batch_header to prepare_composite.
i965: Pull check_aperture out to a separate function and make it dtrt....
2015 Aug 19
5
[PATCH 1/2] nvc0/ir: detect AND/SHR pairs and convert into EXTBF
Some shaders appear to extract bits using shift/and combos. Detect
(some) of those and convert to EXTBF instead.
Signed-off-by: Ilia Mirkin <imirkin at alum.mit.edu>
---
.../drivers/nouveau/codegen/nv50_ir_peephole.cpp | 66 +++++++++++++++-------
1 file changed, 46 insertions(+), 20 deletions(-)
diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir_peephole.cpp
2014 Jul 10
3
[PATCH 0/3] nvc0: ARB_(multi_)draw_indirect support
The main patches are from Christoph. Unfortunately they're a little beyond my
understanding of all the vertex-related details, but they generally seemed
fine. I'm just going to push these unless someone steps up to review them.
Christoph Bumiller (2):
nvc0: add support for indirect drawing
nvc0: fix translate path for PRIM_RESTART_WITH_DRAW_ARRAYS
Ilia Mirkin (1):
nouveau: check if
2015 May 24
19
[RFC PATCH 00/11] Implement ARB_cull_distance
...lausmann (10):
glapi: add GL_ARB_cull_distance
mesa/main: add support for GL_ARB_cull_distance
mesa/prog: Add varyings for arb_cull_distance
mesa/st: add support for GL_ARB_cull_distance
glsl: Add a helper to see if an array was unsize in the shader
glsl: Add arb_cull_distance support
i965: rename UsesClipDistanceOut to UsesClipCullDistanceOut
gallium: add support for arb_cull_distance
nouveau/codegen: sort in galliums cull_distance semantic into the
drivers bitmask
nouveau/nvc0: implement cull_distance as a special form of clip
distance
docs/GL3.txt...
2014 Mar 01
0
[PATCH] nv50,nvc0: add 11f_11f_10f vertex support
...4 insertions(+), 2 deletions(-)
diff --git a/docs/GL3.txt b/docs/GL3.txt
index 755a89c..9738ffc 100644
--- a/docs/GL3.txt
+++ b/docs/GL3.txt
@@ -177,7 +177,7 @@ GL 4.4:
GL_ARB_query_buffer_object not started
GL_ARB_texture_mirror_clamp_to_edge DONE (i965, nv30, nv50, nvc0, r300, r600, radeonsi, swrast)
GL_ARB_texture_stencil8 not started
- GL_ARB_vertex_type_10f_11f_11f_rev DONE (i965, r600)
+ GL_ARB_vertex_type_10f_11f_11f_rev DONE (i965, nv50, nvc0, r600)
More info about t...
2014 Oct 21
0
[PATCH v2] nv50: Handle ARB_conditional_render_inverted and enable it
...7d1d2c..08a22b2 100644
--- a/docs/GL3.txt
+++ b/docs/GL3.txt
@@ -188,7 +188,7 @@ GL 4.5, GLSL 4.50:
GL_ARB_ES3_1_compatibility not started
GL_ARB_clip_control not started
- GL_ARB_conditional_render_inverted DONE (i965, nvc0, llvmpipe, softpipe)
+ GL_ARB_conditional_render_inverted DONE (i965, nv50, nvc0, llvmpipe, softpipe)
GL_ARB_cull_distance not started
GL_ARB_derivative_control DONE (i965, nv50, nvc0, r600)
GL_ARB_direct_s...
2007 May 11
5
Ping interrupts and SSH laggy
Hi,
i have succesfully configured Xen 3.0.4 with 2.6.16 kernel on some C2D
hw with currently 2GB RAM. Only hitch was with the integrated Intel
Gigabit network card which is not supported by by default xen kernel -
so there is e1000 module compiled from intel sources.
Server is connected on 100Mbit ethernet line. Network setting is
currently bridged.
At the moment 4 domUs with various linux PV
2011 Jul 25
7
[Bug 39530] New: Also after installing Obermayrs drm-nouveau driver booting succeeds only with nomodeset
https://bugs.freedesktop.org/show_bug.cgi?id=39530
Summary: Also after installing Obermayrs drm-nouveau driver
booting succeeds only with nomodeset
Product: xorg
Version: git
Platform: x86-64 (AMD64)
OS/Version: Linux (All)
Status: NEW
Severity: major
Priority: medium
Component:
2016 Jul 24
1
[Bug 97067] New: WebGL: conformance/glsl/misc/shaders-with-invariance.html Fail
https://bugs.freedesktop.org/show_bug.cgi?id=97067
Bug ID: 97067
Summary: WebGL:
conformance/glsl/misc/shaders-with-invariance.html
Fail
Product: Mesa
Version: 11.2
Hardware: Other
OS: All
Status: NEW
Severity: normal
Priority: medium
Component:
2014 Oct 23
2
[Bug 85352] New: [NVC0/Gallium] Scaling/centering issue in shadertoy shader
...e: nouveau at lists.freedesktop.org
Reporter: imirkin at alum.mit.edu
https://www.shadertoy.com/view/4sf3Dj
The GameCube logo should be centered. Instead of a NVC1 + 10.3 (and also -git)
it appears to be centered around the upper left corner and scaled/stretched.
Confirmed to work OK on i965 and radeonsi, so most likely a nouveau issue.
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.freedesktop.org/archives/nouveau/attachments/20141023/3391054a/attachment.html&g...
2013 Jul 23
1
[Bug 67215] New: UBO access seems to mask address on nouveau
...tus: NEW
Version: git
Component: Drivers/DRI/nouveau
Product: Mesa
Hi,
The UBO support seems to be broken when used with dolphin-emu. To try it
yourself, I created an apitrace dump:
http://markus.members.selfnet.de/dolphin/dolphin-emu.trace (~48M)
This works fine on i965 and r600g, but it only show some random polygons on
nouveau.
This bug only happens when the uniform buffer is bigger than 64k bytes. More
precisely it happens when any read offset (related to buffer begin) goes above
the 64k mark.
The offset per uniform block is restricted to 64k, but the offsets...
2015 Mar 25
1
[Bug 89759] New: WebGL OGL ES GLSL conformance test with mesa drivers fails
https://bugs.freedesktop.org/show_bug.cgi?id=89759
Bug ID: 89759
Summary: WebGL OGL ES GLSL conformance test with mesa drivers
fails
Product: Mesa
Version: unspecified
Hardware: Other
OS: All
Status: NEW
Severity: normal
Priority: medium
Component:
2012 Apr 25
1
Question about NV18 and GBM library.
...8
failed to load driver: nouveau
====> cannot create gbm device...: No such file or directory
====> errno = 2
some details:
distro: Archlinux
kernel: 3.3.3
Mesa 8.0 from git: ./autogen.sh --prefix=/usr
--with-dri-driverdir=/usr/lib/xorg/modules/dri \
--with-dri-drivers=i915,i965,nouveau,radeon,r200 \
--with-gallium-drivers=r300,r600,nouveau,svga,swrast \
--with-egl-platforms=drm,x11 \
--enable-gallium-llvm \
--enable-gallium-egl \
--enable-shared-dricore \
--enable-shared-glapi...