Displaying 4 results from an estimated 4 matches for "d21905d".
Did you mean:
  d21105
  
2014 Jan 23
2
[PATCH v2] nv50, nvc0: clear out RT on a null cbuf
...#define NV50_SURFACE_FORMAT_BITMAP				0x0000001c
>  #define NV50_SURFACE_FORMAT_UNK1D				0x0000001d
>  #define NV50_SURFACE_FORMAT_RGBA32_FLOAT			0x000000c0
> diff --git a/src/gallium/drivers/nouveau/nv50/nv50_formats.c b/src/gallium/drivers/nouveau/nv50/nv50_formats.c
> index 0a7e812..d21905d 100644
> --- a/src/gallium/drivers/nouveau/nv50/nv50_formats.c
> +++ b/src/gallium/drivers/nouveau/nv50/nv50_formats.c
> @@ -71,7 +71,6 @@
>  # define U_tV  U_V
>  #endif
>  
> -#define NV50_SURFACE_FORMAT_NONE 0
>  #define NV50_ZETA_FORMAT_NONE 0
>  
>  /* for vertex...
2014 Jan 15
3
[PATCH] nv50, nvc0: don't crash on a null cbuf
This is needed since commit 9baa45f78b (st/mesa: bind NULL colorbuffers
as specified by glDrawBuffers).
Signed-off-by: Ilia Mirkin <imirkin at alum.mit.edu>
---
Not sure whether something needs to be done to clear out the old RT_* settings
for that index buffer, or if things are cleared out implicitly. Perhaps
instead of skipping indices, RT_CONTROL needs to be adjusted with the
2014 Jan 17
0
[PATCH v2] nv50, nvc0: clear out RT on a null cbuf
..._NONE				0x00000000
 #define NV50_SURFACE_FORMAT_BITMAP				0x0000001c
 #define NV50_SURFACE_FORMAT_UNK1D				0x0000001d
 #define NV50_SURFACE_FORMAT_RGBA32_FLOAT			0x000000c0
diff --git a/src/gallium/drivers/nouveau/nv50/nv50_formats.c b/src/gallium/drivers/nouveau/nv50/nv50_formats.c
index 0a7e812..d21905d 100644
--- a/src/gallium/drivers/nouveau/nv50/nv50_formats.c
+++ b/src/gallium/drivers/nouveau/nv50/nv50_formats.c
@@ -71,7 +71,6 @@
 # define U_tV  U_V
 #endif
 
-#define NV50_SURFACE_FORMAT_NONE 0
 #define NV50_ZETA_FORMAT_NONE 0
 
 /* for vertex buffers: */
diff --git a/src/gallium/drivers/nouve...
2014 Jan 23
0
[PATCH v2] nv50, nvc0: clear out RT on a null cbuf
...#define NV50_SURFACE_FORMAT_UNK1D                            0x0000001d
>>  #define NV50_SURFACE_FORMAT_RGBA32_FLOAT                     0x000000c0
>> diff --git a/src/gallium/drivers/nouveau/nv50/nv50_formats.c b/src/gallium/drivers/nouveau/nv50/nv50_formats.c
>> index 0a7e812..d21905d 100644
>> --- a/src/gallium/drivers/nouveau/nv50/nv50_formats.c
>> +++ b/src/gallium/drivers/nouveau/nv50/nv50_formats.c
>> @@ -71,7 +71,6 @@
>>  # define U_tV  U_V
>>  #endif
>>
>> -#define NV50_SURFACE_FORMAT_NONE 0
>>  #define NV50_ZETA_FORMAT_NONE...