Lines Matching refs:byte_code
56 info.byte_code = pFunction; in NinePixelShader9_ctor()
74 This->byte_code.version = info.version; in NinePixelShader9_ctor()
76 This->byte_code.tokens = mem_dup(pFunction, info.byte_size); in NinePixelShader9_ctor()
77 if (!This->byte_code.tokens) in NinePixelShader9_ctor()
79 This->byte_code.size = info.byte_size; in NinePixelShader9_ctor()
137 FREE((void *)This->byte_code.tokens); /* const_cast */ in NinePixelShader9_dtor()
152 *pSizeOfData = This->byte_code.size; in NinePixelShader9_GetFunction()
155 user_assert(*pSizeOfData >= This->byte_code.size, D3DERR_INVALIDCALL); in NinePixelShader9_GetFunction()
157 memcpy(pData, This->byte_code.tokens, This->byte_code.size); in NinePixelShader9_GetFunction()
189 info.byte_code = This->byte_code.tokens; in NinePixelShader9_GetVariant()
192 if (unlikely(This->byte_code.version < 0x20)) { in NinePixelShader9_GetVariant()
193 if (This->byte_code.version < 0x14) { in NinePixelShader9_GetVariant()