1
0
Fork 0
mirror of https://github.com/bjornbytes/lovr.git synced 2024-07-02 12:33:52 +00:00

Remove redundant SoundData:getPointer()

This commit is contained in:
Nevyn Bengtsson 2020-01-19 22:43:13 +01:00
parent 9127dd823c
commit 91cc385340

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 }
};