Searched refs:found_sig (Results 1 - 2 of 2) sorted by relevance
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/wined3d/ |
H A D | arb_program_shader.c | 3980 struct ps_signature *found_sig; local 3984 found_sig = WINE_RB_ENTRY_VALUE(entry, struct ps_signature, entry); 3985 TRACE("Found existing signature %u\n", found_sig->idx); 3986 return found_sig->idx; 3988 found_sig = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*found_sig)); 3989 found_sig->sig = clone_sig(sig); 3990 found_sig->idx = priv->ps_sig_number++; 3991 TRACE("New signature stored and assigned number %u\n", found_sig->idx); 3992 if(wine_rb_put(&priv->signature_tree, sig, &found_sig [all...] |
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/ |
H A D | arb_program_shader.c | 3710 struct ps_signature *found_sig; local 3714 found_sig = WINE_RB_ENTRY_VALUE(entry, struct ps_signature, entry); 3715 TRACE("Found existing signature %u\n", found_sig->idx); 3716 return found_sig->idx; 3718 found_sig = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*sig)); 3719 found_sig->sig = clone_sig(sig); 3720 found_sig->idx = priv->ps_sig_number++; 3721 TRACE("New signature stored and assigned number %u\n", found_sig->idx); 3722 if(wine_rb_put(&priv->signature_tree, sig, &found_sig->entry) == -1) 3726 return found_sig [all...] |
Completed in 169 milliseconds