| 22 | */ |
| 23 | // todo: either remove or move to common |
| 24 | public class DummyRenderer implements refexport_t { |
| 25 | |
| 26 | /* (non-Javadoc) |
| 27 | * @see jake2.client.refexport_t#Init(int, int) |
| 28 | */ |
| 29 | public boolean Init(int vid_xpos, int vid_ypos) { |
| 30 | return false; |
| 31 | } |
| 32 | |
| 33 | /* (non-Javadoc) |
| 34 | * @see jake2.client.refexport_t#Shutdown() |
| 35 | */ |
| 36 | public void Shutdown() { |
| 37 | } |
| 38 | |
| 39 | /* (non-Javadoc) |
| 40 | * @see jake2.client.refexport_t#BeginRegistration(java.lang.String) |
| 41 | */ |
| 42 | public void BeginRegistration(String map) { |
| 43 | } |
| 44 | |
| 45 | /* (non-Javadoc) |
| 46 | * @see jake2.client.refexport_t#RegisterModel(java.lang.String) |
| 47 | */ |
| 48 | public model_t RegisterModel(String name) { |
| 49 | return null; |
| 50 | } |
| 51 | |
| 52 | /* (non-Javadoc) |
| 53 | * @see jake2.client.refexport_t#RegisterSkin(java.lang.String) |
| 54 | */ |
| 55 | public image_t RegisterSkin(String name) { |
| 56 | return null; |
| 57 | } |
| 58 | |
| 59 | /* (non-Javadoc) |
| 60 | * @see jake2.client.refexport_t#RegisterPic(java.lang.String) |
| 61 | */ |
| 62 | public image_t RegisterPic(String name) { |
| 63 | return null; |
| 64 | } |
| 65 | |
| 66 | /* (non-Javadoc) |
| 67 | * @see jake2.client.refexport_t#SetSky(java.lang.String, float, float[]) |
| 68 | */ |
| 69 | public void SetSky(String name, float rotate, float[] axis) { |
| 70 | } |
| 71 | |
| 72 | /* (non-Javadoc) |
| 73 | * @see jake2.client.refexport_t#EndRegistration() |
| 74 | */ |
| 75 | public void EndRegistration() { |
| 76 | } |
| 77 | |
| 78 | /* (non-Javadoc) |
| 79 | * @see jake2.client.refexport_t#RenderFrame(jake2.client.refdef_t) |
| 80 | */ |
| 81 | public void RenderFrame(refdef_t fd) { |
nothing calls this directly
no outgoing calls
no test coverage detected