| 878 | } |
| 879 | |
| 880 | void CGraphics_Threaded::QuadsSetSubset(float TlU, float TlV, float BrU, float BrV) |
| 881 | { |
| 882 | m_aTexture[0].u = TlU; |
| 883 | m_aTexture[1].u = BrU; |
| 884 | m_aTexture[0].v = TlV; |
| 885 | m_aTexture[1].v = TlV; |
| 886 | |
| 887 | m_aTexture[3].u = TlU; |
| 888 | m_aTexture[2].u = BrU; |
| 889 | m_aTexture[3].v = BrV; |
| 890 | m_aTexture[2].v = BrV; |
| 891 | } |
| 892 | |
| 893 | void CGraphics_Threaded::QuadsSetSubsetFree( |
| 894 | float x0, float y0, float x1, float y1, |
no outgoing calls