Remove redundant SoundData:getPointer()

This commit is contained in:
Nevyn Bengtsson 2020-01-19 22:43:13 +01:00
parent 9127dd823c
commit 91cc385340
1 changed files with 0 additions and 7 deletions

View File

@ -47,12 +47,6 @@ static int l_lovrSoundDataSetSample(lua_State* L) {
return 0;
}
static int l_lovrSoundDataGetPointer(lua_State* L) {
SoundData* soundData = luax_checktype(L, 1, SoundData);
lua_pushlightuserdata(L, soundData->blob->data);
return 1;
}
static int l_lovrSoundDataGetBlob(lua_State* L) {
SoundData* soundData = luax_checktype(L, 1, SoundData);
Blob* blob = soundData->blob;
@ -69,7 +63,6 @@ const luaL_Reg lovrSoundData[] = {
{ "getSampleCount", l_lovrSoundDataGetSampleCount },
{ "getSampleRate", l_lovrSoundDataGetSampleRate },
{ "setSample", l_lovrSoundDataSetSample },
{ "getPointer", l_lovrSoundDataGetPointer },
{ "getBlob", l_lovrSoundDataGetBlob },
{ NULL, NULL }
};