search for: if_stack

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

Did you mean: df_stack
2014 Feb 21
3
[PATCH 1/4] nv30: remove use_nv4x, it is identical to is_nv4x
...break; @@ -815,7 +815,7 @@ nvfx_fragprog_parse_instruction(struct nv30_context* nvfx, struct nvfx_fpc *fpc, case TGSI_OPCODE_ELSE: { uint32_t *hw; - if(!nvfx->use_nv4x) + if(!nvfx->is_nv4x) goto nv3x_cflow; assert(util_dynarray_contains(&fpc->if_stack, unsigned)); hw = &fpc->fp->insn[util_dynarray_top(&fpc->if_stack, unsigned)]; @@ -826,7 +826,7 @@ nvfx_fragprog_parse_instruction(struct nv30_context* nvfx, struct nvfx_fpc *fpc, case TGSI_OPCODE_ENDIF: { uint32_t *hw; - if(!nvfx->use_nv4x) + if(...
2014 Jun 18
1
[PATCH 1/2] nv30: plug some memory leaks on screen destroy and shader compile
...30/nvfx_fragprog.c index 4955226..1f1fba2 100644 --- a/src/gallium/drivers/nouveau/nv30/nvfx_fragprog.c +++ b/src/gallium/drivers/nouveau/nv30/nvfx_fragprog.c @@ -1225,6 +1225,7 @@ out: if(fpc) { FREE(fpc->r_temp); + FREE(fpc->r_imm); util_dynarray_fini(&fpc->if_stack); util_dynarray_fini(&fpc->label_relocs); util_dynarray_fini(&fpc->imm_data); -- 1.8.5.5
2010 Feb 05
0
Wine release 1.1.38
...Add tests for WinHttpSetTimeouts. winhttp/tests: Add timeout tests for WinHttp{Set, Query}Option. winhttp: Add timeout for session handles and implement for WinHttpSetTimeouts. winhttp: Implement WINHTTP_OPTION_{CONNECT, SEND, RECEIVE}_TIMEOUT. Matteo Bruni (1): wpp: Assure if_stack is clean before returning. Michael Stefaniuc (17): kernel32: Use IS_INTRESOURCE instead of HIWORD to check a resource. comctl32: Use IS_INTRESOURCE instead of HIWORD to check a resource. hhctrl.ocx: Fix the mem handling in get_attr() (Smatch). comdlg32: Use IS_INTRESOURCE i...