| 61 | } g_ComputeModule; |
| 62 | |
| 63 | static inline ComputeResource* CheckComputeResource(lua_State* L, int index) |
| 64 | { |
| 65 | dmhash_t path_hash = dmScript::CheckHashOrString(L, index); |
| 66 | return (ComputeResource*) CheckResource(L, g_ComputeModule.m_Factory, path_hash, "computec"); |
| 67 | } |
| 68 | |
| 69 | /*# gets texture samplers from a compute program |
| 70 | * Returns a table of all the texture samplers in the compute program. This function will return all the texture samplers |
no test coverage detected