Lines Matching refs:byte_code
61 info.byte_code = pFunction; in NineVertexShader9_ctor()
88 This->byte_code.version = info.version; in NineVertexShader9_ctor()
91 This->byte_code.tokens = mem_dup(pFunction, info.byte_size); in NineVertexShader9_ctor()
92 if (!This->byte_code.tokens) in NineVertexShader9_ctor()
94 This->byte_code.size = info.byte_size; in NineVertexShader9_ctor()
162 FREE((void *)This->byte_code.tokens); /* const_cast */ in NineVertexShader9_dtor()
178 *pSizeOfData = This->byte_code.size; in NineVertexShader9_GetFunction()
181 user_assert(*pSizeOfData >= This->byte_code.size, D3DERR_INVALIDCALL); in NineVertexShader9_GetFunction()
183 memcpy(pData, This->byte_code.tokens, This->byte_code.size); in NineVertexShader9_GetFunction()
215 info.byte_code = This->byte_code.tokens; in NineVertexShader9_GetVariant()
261 info.byte_code = This->byte_code.tokens; in NineVertexShader9_GetVariantProcessVertices()