Displaying 3 results from an estimated 3 matches for "acube".
Did you mean:
cube
2006 Jan 20
1
applicationmap
Hi -
I'm trying to implement the applicationmap stuff in features.conf, and I
can't seem to get it to work. I'm testing it out on 1.2.2 with Polycom
IP500s and Snom190s.
My features.conf looks like this:
[general]
parkext => 700
parkpos => 701-720
context => parkedcalls
parkingtime => 240
transferdigittimeout => 2
;courtesytone = beep
2013 Dec 08
0
[PATCH] nv50: TXF already has integer arguments, don't try to convert from f32
...LValue *src = new_LValue(func, FILE_GPR);
+ bld.mkCvt(OP_CVT, TYPE_U32, src, TYPE_F32, layer);
+ bld.mkOp2(OP_MIN, TYPE_U32, src, src, bld.loadImm(NULL, 511));
+ i->setSrc(arg - 1, src);
+ }
if (i->tex.target.isCube()) {
std::vector<Value *> acube, a2d;
int c;
--
1.8.3.2
2014 Feb 19
0
[PATCH] nv50: enable cube map array texture support
...andleTEX(TexInstruction *i)
bld.mkOp2(OP_MIN, TYPE_U32, src, src, bld.loadImm(NULL, 511));
i->setSrc(arg - 1, src);
}
- if (i->tex.target.isCube()) {
+ if (i->tex.target.isCube() && i->srcCount() > 4) {
std::vector<Value *> acube, a2d;
int c;
@@ -681,9 +681,10 @@ NV50LoweringPreSSA::handleTEX(TexInstruction *i)
for (c = 0; c < 3; ++c)
i->setSrc(c, a2d[c]);
- i->setSrc(c, NULL);
for (; i->srcExists(c + 1); ++c)
i->setSrc(c, i->getSrc(c + 1)...