| /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/nine/ |
| H A D | pixelshader9.h | 44 } byte_code; member in struct:NinePixelShader9 87 if (unlikely(ps->byte_code.version < 0x20)) { 100 assert((ps->byte_code.version < 0x14 && !(ps->sampler_mask & 0xFFF0)) || !(ps->sampler_mask & 0xFFC0)); 102 if (unlikely(ps->byte_code.version < 0x14)) { 111 if (ps->byte_code.version < 0x30) {
|
| H A D | pixelshader9.c | 56 info.byte_code = pFunction; 74 This->byte_code.version = info.version; 76 This->byte_code.tokens = mem_dup(pFunction, info.byte_size); 77 if (!This->byte_code.tokens) 79 This->byte_code.size = info.byte_size; 137 FREE((void *)This->byte_code.tokens); /* const_cast */ 152 *pSizeOfData = This->byte_code.size; 155 user_assert(*pSizeOfData >= This->byte_code.size, D3DERR_INVALIDCALL); 157 memcpy(pData, This->byte_code.tokens, This->byte_code [all...] |
| H A D | vertexshader9.c | 61 info.byte_code = pFunction; 88 This->byte_code.version = info.version; 91 This->byte_code.tokens = mem_dup(pFunction, info.byte_size); 92 if (!This->byte_code.tokens) 94 This->byte_code.size = info.byte_size; 162 FREE((void *)This->byte_code.tokens); /* const_cast */ 178 *pSizeOfData = This->byte_code.size; 181 user_assert(*pSizeOfData >= This->byte_code.size, D3DERR_INVALIDCALL); 183 memcpy(pData, This->byte_code.tokens, This->byte_code [all...] |
| H A D | vertexshader9.h | 50 } byte_code; member in struct:NineVertexShader9 100 if (vs->byte_code.version < 0x30)
|
| H A D | nine_shader.h | 51 const DWORD *byte_code; /* in, pointer to shader tokens */ member in struct:nine_shader_info 52 DWORD byte_size; /* out, size of data at byte_code */
|
| H A D | nine_shader.c | 435 const DWORD *byte_code; member in struct:shader_translator 3532 tx->byte_code = info->byte_code; 3533 tx->parse = info->byte_code; 4010 info->byte_size = (tx->parse - tx->byte_code) * sizeof(DWORD);
|
| H A D | device9.c | 3011 user_assert(vdecl || (vs->byte_code.version < 0x30 && dst->desc.FVF), 3035 user_assert(vs->byte_code.version == 0x30,
|
| H A D | nine_state.c | 556 if (context->ps->byte_code.version < 0x30 &&
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/nine/ |
| H A D | pixelshader9.h | 44 } byte_code; member in struct:NinePixelShader9 90 if (unlikely(ps->byte_code.version < 0x20)) { 103 assert((ps->byte_code.version < 0x14 && !(ps->sampler_mask & 0xFFF0)) || !(ps->sampler_mask & 0xFFC0)); 105 if (unlikely(ps->byte_code.version < 0x14)) { 114 if (ps->byte_code.version < 0x30) {
|
| H A D | pixelshader9.c | 56 info.byte_code = pFunction; 75 This->byte_code.version = info.version; 77 This->byte_code.tokens = mem_dup(pFunction, info.byte_size); 78 if (!This->byte_code.tokens) 80 This->byte_code.size = info.byte_size; 138 FREE((void *)This->byte_code.tokens); /* const_cast */ 153 *pSizeOfData = This->byte_code.size; 156 user_assert(*pSizeOfData >= This->byte_code.size, D3DERR_INVALIDCALL); 158 memcpy(pData, This->byte_code.tokens, This->byte_code [all...] |
| H A D | vertexshader9.c | 61 info.byte_code = pFunction; 89 This->byte_code.version = info.version; 92 This->byte_code.tokens = mem_dup(pFunction, info.byte_size); 93 if (!This->byte_code.tokens) 95 This->byte_code.size = info.byte_size; 163 FREE((void *)This->byte_code.tokens); /* const_cast */ 179 *pSizeOfData = This->byte_code.size; 182 user_assert(*pSizeOfData >= This->byte_code.size, D3DERR_INVALIDCALL); 184 memcpy(pData, This->byte_code.tokens, This->byte_code [all...] |
| H A D | vertexshader9.h | 50 } byte_code; member in struct:NineVertexShader9 100 if (vs->byte_code.version < 0x30)
|
| H A D | nine_shader.h | 52 const DWORD *byte_code; /* in, pointer to shader tokens */ member in struct:nine_shader_info 53 DWORD byte_size; /* out, size of data at byte_code */
|
| H A D | nine_shader.c | 436 const DWORD *byte_code; member in struct:shader_translator 3567 tx->byte_code = info->byte_code; 3568 tx->parse = info->byte_code; 4163 info->byte_size = (tx->parse - tx->byte_code) * sizeof(DWORD);
|
| H A D | device9.c | 3246 user_assert(vdecl || (vs->byte_code.version < 0x30 && dst->desc.FVF), 3270 user_assert(vs->byte_code.version == 0x30,
|
| H A D | nine_state.c | 583 if (context->ps->byte_code.version < 0x30 &&
|