search for: ndst

Displaying 3 results from an estimated 3 matches for "ndst".

Did you mean: dst
2012 Dec 28
0
How to apply XPath query on XML nodes separately?
...A XML tag of type entry as returned i.e. by function 'getEntries' # # Returns: A character vector of the extracted experimentally verified GO # annotations, or NULL, if none can be found. # block <- function() { ns <- c( xmlns="http://uniprot.org/uniprot" ) ndst <- suppressWarnings( getNodeSet( doc, "//xmlns:dbReference[@type='GO']//xmlns:property[@type='evidence' and ( contains(@value, 'EXP') or contains(@value, 'IDA') or contains(@value, 'IPI') or contains(@value, 'IMP') or contains(@v...
2017 Jun 11
0
[RFC 4/9] tgsi: populate precise
..._IF(tx->ureg, ureg_scalar(ureg_src(tmp), TGSI_SWIZZLE_X), tx_cond(tx)); ureg_BRK(tx->ureg); tx_endcond(tx); @@ -3029,7 +3029,7 @@ NineTranslateInstruction_Generic(struct shader_translator *tx) ureg_insn(tx->ureg, tx->insn.info->opcode, dst, tx->insn.ndst, - src, tx->insn.nsrc); + src, tx->insn.nsrc, 0); return D3D_OK; } diff --git a/src/mesa/state_tracker/st_atifs_to_tgsi.c b/src/mesa/state_tracker/st_atifs_to_tgsi.c index 338ced56ed..e0a6ff7131 100644 --- a/src/mesa/state_tracker/st_atifs_to_tgsi.c +++ b/src...
2017 Jun 11
14
[RFC 0/9] Add precise/invariant semantics to TGSI
Running Tomb Raider on Nouveau I found some flicker caused by ignoring precise modifiers on variables inside Nouveau. This series add precise/invariant handling to TGSI, which can be then used by drivers to disable certain unsafe optimisations which may otherwise alter calculations, which depend on having the same result across shaders. This series fixes this bug in Tomb Raider and one CTS test