Displaying 3 results from an estimated 3 matches for "two_sid".
Did you mean:
two_side
2009 Sep 12
0
[PATCH 11/13] nv50: add support for light-twoside
...fc 100644
--- a/src/gallium/drivers/nv50/nv50_program.c
+++ b/src/gallium/drivers/nv50/nv50_program.c
@@ -2048,6 +2048,11 @@ nv50_program_tx_prep(struct nv50_pc *pc)
si = d->Semantic.SemanticIndex;
switch (d->Semantic.SemanticName) {
+ case TGSI_SEMANTIC_BCOLOR:
+ p->cfg.two_side[si].hw_id = first;
+ if (p->cfg.io_nr > first)
+ p->cfg.io_nr = first;
+ break;
/*
case TGSI_SEMANTIC_CLIP_DISTANCE:
p->cfg.clpd = MIN2(p->cfg.clpd, first);
@@ -2125,6 +2130,11 @@ nv50_program_tx_prep(struct nv50_pc *pc)
p->cfg.io[i].mask |= 1 &...
2008 Mar 01
2
Newbie: Incorrect number of dimensions
> dim(data.sub)
[1] 10000 140
#####extracting all differentially express genes##########
library(multtest)
two_side<- (1-pt(abs(data.sub),50))*2
diff<- mt.rawp2adjp(two_side)
all_differ<-diff[[1]][37211:10000,]
all_differ
#####list of differentially expressed genes##########
> probe.names<-
+ all_differ[[2]][all_differ[[1]][,"BY"]<=0.01]
Error in all_differ[[1]][, "BY"] :...
2009 Sep 12
0
[PATCH 10/13] nv50: proper linkage between VP and FP
...+ /* mark color semantic for light-twoside */
+ for (i = 0; i < pc->attr_nr; i++) {
+ ubyte si, sn;
+
+ n = p->cfg.io[i].tgsi_id - tgsi_off;
+ sn = p->info.input_semantic_name[n];
+ si = p->info.input_semantic_index[n];
+
+ if (sn == TGSI_SEMANTIC_COLOR) {
+ p->cfg.two_side[si] = p->cfg.io[i];
+ p->cfg.regs[0] += popcnt4(
+ p->cfg.two_side[si].mask) << 16;
+ }
}
+
+ /* Initialize FP results:
+ * FragDepth is always first TGSI and last hw output
+ */
+ i = p->info.writes_z ? 4 : 0;
+ for (rid = 0; i < pc->result_nr * 4; i++)...