UDI - Tweaks to bochsga driver
[tpg/acess2.git] / UDI / drivers / helpers_gfx.h
index f4d9bcf..999a408 100644 (file)
@@ -6,6 +6,10 @@
 #ifndef _HELPERS_GFX_H_
 #define _HELPERS_GFX_H_
 
+#if __STDC_VERSION__ < 199901L
+# define       inline
+#endif
+
 typedef struct {
        udi_index_t     op;
        udi_ubit32_t    arg_1;
@@ -18,22 +22,6 @@ typedef struct {
        const gfxhelpers_op_t   *ops;
 } gfxhelpers_op_map_t;
 
-static inline udi_ubit32_t gfxhelpers_get_engine_op(
-       const gfxhelpers_op_map_t *map, udi_index_t index, udi_index_t prop
-       )
-{
-       if( index >= map->op_count ) {
-               return 0;
-       }
-       switch(prop) {
-       case UDI_GFX_PROP_OPERATOR_OPCODE:      return map->ops[index].op;
-       case UDI_GFX_PROP_OPERATOR_ARG_1:       return map->ops[index].arg_1;
-       case UDI_GFX_PROP_OPERATOR_ARG_2:       return map->ops[index].arg_2;
-       case UDI_GFX_PROP_OPERATOR_ARG_3:       return map->ops[index].arg_3;
-       }
-       return 0;
-}
-
 static inline void gfxhelpers_return_range_simple(
        udi_gfx_range_connector_ack_op_t *callback, udi_gfx_range_cb_t *cb,
        udi_ubit32_t min, udi_ubit32_t max, udi_ubit32_t step

UCC git Repository :: git.ucc.asn.au