Revision: 76986
          http://sourceforge.net/p/brlcad/code/76986
Author:   starseeker
Date:     2020-08-28 13:10:37 +0000 (Fri, 28 Aug 2020)
Log Message:
-----------
unused

Removed Paths:
-------------
    brlcad/branches/swrast/src/libdm/tests/renderer/platform.h

Deleted: brlcad/branches/swrast/src/libdm/tests/renderer/platform.h
===================================================================
--- brlcad/branches/swrast/src/libdm/tests/renderer/platform.h  2020-08-28 
13:06:52 UTC (rev 76985)
+++ brlcad/branches/swrast/src/libdm/tests/renderer/platform.h  2020-08-28 
13:10:37 UTC (rev 76986)
@@ -1,33 +0,0 @@
-#ifndef PLATFORM_H
-#define PLATFORM_H
-
-#include "graphics.h"
-
-typedef struct window window_t;
-typedef enum {KEY_A, KEY_D, KEY_S, KEY_W, KEY_SPACE, KEY_NUM} keycode_t;
-typedef enum {BUTTON_L, BUTTON_R, BUTTON_NUM} button_t;
-typedef struct {
-    void (*key_callback)(window_t *window, keycode_t key, int pressed);
-    void (*button_callback)(window_t *window, button_t button, int pressed);
-    void (*scroll_callback)(window_t *window, float offset);
-} callbacks_t;
-
-/* window related functions */
-window_t *window_create(const char *title, int width, int height);
-void window_destroy(window_t *window);
-int window_should_close(window_t *window);
-void window_set_userdata(window_t *window, void *userdata);
-void *window_get_userdata(window_t *window);
-void window_draw_buffer(window_t *window, framebuffer_t *buffer);
-
-/* input related functions */
-void input_poll_events(void);
-int input_key_pressed(window_t *window, keycode_t key);
-int input_button_pressed(window_t *window, button_t button);
-void input_query_cursor(window_t *window, float *xpos, float *ypos);
-void input_set_callbacks(window_t *window, callbacks_t callbacks);
-
-/* misc platform functions */
-float platform_get_time(void);
-
-#endif

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.



_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to