| 101 | }; |
| 102 | |
| 103 | static int RenderScriptConstantBuffer_gc (lua_State *L) |
| 104 | { |
| 105 | NamedConstantBufferTable* cb = (NamedConstantBufferTable*) lua_touserdata(L, 1); |
| 106 | DeleteNamedConstantBuffer(cb->m_ConstantBuffer); |
| 107 | cb->m_ConstantArrayEntries.~dmHashTable64<dmRender::ConstantBufferTableEntry>(); |
| 108 | cb->m_ConstantBuffer = 0; |
| 109 | return 0; |
| 110 | } |
| 111 | |
| 112 | static int RenderScriptConstantBuffer_tostring (lua_State *L) |
| 113 | { |
nothing calls this directly
no test coverage detected