Subversion Repositories Kolibri OS

Rev

Rev 4378 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4378 Rev 4379
Line 1... Line 1...
1
/*
1
/*
2
 * Copyright © 2011 Intel Corporation
2
 * Copyright © 2011 Intel Corporation
3
 *
3
 *
4
 * Permission is hereby granted, free of charge, to any person obtaining a
4
 * Permission is hereby granted, free of charge, to any person obtaining a
5
 * copy of this software and associated documentation files (the "Software"),
5
 * copy of this software and associated documentation files (the "Software"),
6
 * to deal in the Software without restriction, including without limitation
6
 * to deal in the Software without restriction, including without limitation
Line 44... Line 44...
44
#include "egl_dri2.h"
44
#include "egl_dri2.h"
Line 45... Line 45...
45
 
45
 
46
void* load_library(const char *name);
46
void* load_library(const char *name);
Line 47... Line 47...
47
void *get_proc_address(void *module, char *proc_name);
47
void *get_proc_address(void *module, char *proc_name);
48
 
48
 
49
int (*blit_bitmap_from_handle)(bitmap_t *bitmap, uint32_t handle);
49
static int (*blit_bitmap_from_handle)(bitmap_t *bitmap, uint32_t handle);
50
void (*blit_set_bo_handle)(bitmap_t *bitmap, int handle);
50
static void (*blit_set_bo_handle)(bitmap_t *bitmap, int handle);
Line 51... Line 51...
51
int (*blit_blit_tex)(bitmap_t *bitmap, int scale, int vsync, int dst_x, int dst_y,
51
static int (*blit_blit_tex)(bitmap_t *bitmap, int scale, int vsync, int dst_x, int dst_y,
52
                  int w, int h, int src_x, int src_y);
52
                  int w, int h, int src_x, int src_y);
53
 
53