Lines Matching refs:apitex
243 void apitextotex(apitexture *apitex, texture *tex) { in apitextotex() argument
244 switch (apitex->texturefunc) { in apitextotex()
261 tex->img = AllocateImage((char *)apitex->imap); in apitextotex()
266 tex->img = AllocateImage((char *)apitex->imap); in apitextotex()
271 tex->img = AllocateImage((char *)apitex->imap); in apitextotex()
277 tex->ctr = apitex->ctr; in apitextotex()
278 tex->rot = apitex->rot; in apitextotex()
279 tex->scale = apitex->scale; in apitextotex()
280 tex->uaxs = apitex->uaxs; in apitextotex()
281 tex->vaxs = apitex->vaxs; in apitextotex()
282 tex->ambient = apitex->ambient; in apitextotex()
283 tex->diffuse = apitex->diffuse; in apitextotex()
284 tex->specular = apitex->specular; in apitextotex()
285 tex->opacity = apitex->opacity; in apitextotex()
286 tex->col = apitex->col; in apitextotex()
295 void *rt_texture(apitexture *apitex) { in rt_texture() argument
299 apitextotex(apitex, tex); in rt_texture()