| 755 | |
| 756 | static int GrO_GetShadows(void) { return Entities.ShadowsMode; } |
| 757 | static void GrO_SetShadows(int v) { |
| 758 | cc_string str = String_FromReadonly(ShadowMode_Names[v]); |
| 759 | Entities.ShadowsMode = v; |
| 760 | Options_Set(OPT_ENTITY_SHADOW, &str); |
| 761 | } |
| 762 | |
| 763 | static cc_bool GrO_GetMipmaps(void) { return Gfx.Mipmaps; } |
| 764 | static void GrO_SetMipmaps(cc_bool v) { |
nothing calls this directly
no test coverage detected