#629 removed unused render commands

This commit is contained in:
Mikayla Fischler 2025-09-13 16:04:45 -04:00
parent 20f949a9dd
commit ff68eeae1a
3 changed files with 1 additions and 6 deletions

View File

@ -17,8 +17,6 @@ local LINK_STATE = iocontrol.LINK_STATE
local pocket = {}
local MQ__RENDER_CMD = {
UNLOAD_SV_APPS = 1,
UNLOAD_API_APPS = 2
}
local MQ__RENDER_DATA = {

View File

@ -22,7 +22,7 @@ local pocket = require("pocket.pocket")
local renderer = require("pocket.renderer")
local threads = require("pocket.threads")
local POCKET_VERSION = "v1.0.1"
local POCKET_VERSION = "v1.0.2"
local println = util.println
local println_ts = util.println_ts

View File

@ -159,9 +159,6 @@ function threads.thread__render(smem)
if msg ~= nil then
if msg.qtype == mqueue.TYPE.COMMAND then
-- received a command
if msg.message == MQ__RENDER_CMD.UNLOAD_SV_APPS then
elseif msg.message == MQ__RENDER_CMD.UNLOAD_API_APPS then
end
elseif msg.qtype == mqueue.TYPE.DATA then
-- received data
local cmd = msg.message ---@type queue_data