nvc0: switch nvc0_surface.c to updated g80_texture.xml.h
Verified (binary diff) to produce identical code. Signed-off-by: Ben Skeggs <bskeggs@redhat.com> Acked-by: Ilia Mirkin <imirkin@alum.mit.edu>
This commit is contained in:
@@ -35,7 +35,7 @@
|
||||
#include "nvc0/nvc0_resource.h"
|
||||
|
||||
#include "nv50/g80_defs.xml.h"
|
||||
#include "nv50/nv50_texture.xml.h"
|
||||
#include "nv50/g80_texture.xml.h"
|
||||
|
||||
/* these are used in nv50_blit.h */
|
||||
#define NV50_ENG2D_SUPPORTED_FORMATS 0xff9ccfe1cce3ccc9ULL
|
||||
@@ -871,12 +871,14 @@ nvc0_blitter_make_sampler(struct nvc0_blitter *blit)
|
||||
|
||||
blit->sampler[0].id = -1;
|
||||
|
||||
blit->sampler[0].tsc[0] = NV50_TSC_0_SRGB_CONVERSION_ALLOWED |
|
||||
(NV50_TSC_WRAP_CLAMP_TO_EDGE << NV50_TSC_0_WRAPS__SHIFT) |
|
||||
(NV50_TSC_WRAP_CLAMP_TO_EDGE << NV50_TSC_0_WRAPT__SHIFT) |
|
||||
(NV50_TSC_WRAP_CLAMP_TO_EDGE << NV50_TSC_0_WRAPR__SHIFT);
|
||||
blit->sampler[0].tsc[0] = G80_TSC_0_SRGB_CONVERSION |
|
||||
(G80_TSC_WRAP_CLAMP_TO_EDGE << G80_TSC_0_ADDRESS_U__SHIFT) |
|
||||
(G80_TSC_WRAP_CLAMP_TO_EDGE << G80_TSC_0_ADDRESS_V__SHIFT) |
|
||||
(G80_TSC_WRAP_CLAMP_TO_EDGE << G80_TSC_0_ADDRESS_P__SHIFT);
|
||||
blit->sampler[0].tsc[1] =
|
||||
NV50_TSC_1_MAGF_NEAREST | NV50_TSC_1_MINF_NEAREST | NV50_TSC_1_MIPF_NONE;
|
||||
G80_TSC_1_MAG_FILTER_NEAREST |
|
||||
G80_TSC_1_MIN_FILTER_NEAREST |
|
||||
G80_TSC_1_MIP_FILTER_NONE;
|
||||
|
||||
/* clamp to edge, min/max lod = 0, bilinear filtering */
|
||||
|
||||
@@ -884,7 +886,9 @@ nvc0_blitter_make_sampler(struct nvc0_blitter *blit)
|
||||
|
||||
blit->sampler[1].tsc[0] = blit->sampler[0].tsc[0];
|
||||
blit->sampler[1].tsc[1] =
|
||||
NV50_TSC_1_MAGF_LINEAR | NV50_TSC_1_MINF_LINEAR | NV50_TSC_1_MIPF_NONE;
|
||||
G80_TSC_1_MAG_FILTER_LINEAR |
|
||||
G80_TSC_1_MIN_FILTER_LINEAR |
|
||||
G80_TSC_1_MIP_FILTER_NONE;
|
||||
}
|
||||
|
||||
static void
|
||||
|
||||
Reference in New Issue
Block a user