mirror of
https://github.com/brl/mutter.git
synced 2025-04-03 09:03:46 +00:00
tests/cogl: Migrate sparse pipeline test
Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/2555>
This commit is contained in:
parent
8dc0489b33
commit
400cc89364
@ -1,6 +1,5 @@
|
|||||||
cogl_test_conformance_sources = [
|
cogl_test_conformance_sources = [
|
||||||
'test-conform-main.c',
|
'test-conform-main.c',
|
||||||
'test-sparse-pipeline.c',
|
|
||||||
'test-read-texture-formats.c',
|
'test-read-texture-formats.c',
|
||||||
'test-write-texture-formats.c',
|
'test-write-texture-formats.c',
|
||||||
'test-point-size.c',
|
'test-point-size.c',
|
||||||
|
@ -62,8 +62,6 @@ main (int argc, char **argv)
|
|||||||
UNPORTED_TEST (test_readpixels);
|
UNPORTED_TEST (test_readpixels);
|
||||||
ADD_TEST (test_layer_remove, 0, 0);
|
ADD_TEST (test_layer_remove, 0, 0);
|
||||||
|
|
||||||
ADD_TEST (test_sparse_pipeline, 0, 0);
|
|
||||||
|
|
||||||
ADD_TEST (test_npot_texture, 0, 0);
|
ADD_TEST (test_npot_texture, 0, 0);
|
||||||
UNPORTED_TEST (test_multitexture);
|
UNPORTED_TEST (test_multitexture);
|
||||||
UNPORTED_TEST (test_texture_mipmaps);
|
UNPORTED_TEST (test_texture_mipmaps);
|
||||||
|
@ -6,7 +6,6 @@ void test_path_clip (void);
|
|||||||
void test_depth_test (void);
|
void test_depth_test (void);
|
||||||
void test_backface_culling (void);
|
void test_backface_culling (void);
|
||||||
void test_layer_remove (void);
|
void test_layer_remove (void);
|
||||||
void test_sparse_pipeline (void);
|
|
||||||
void test_npot_texture (void);
|
void test_npot_texture (void);
|
||||||
void test_texture_get_set_data (void);
|
void test_texture_get_set_data (void);
|
||||||
void test_read_texture_formats (void);
|
void test_read_texture_formats (void);
|
||||||
|
@ -17,6 +17,7 @@ cogl_tests = [
|
|||||||
'test-offscreen',
|
'test-offscreen',
|
||||||
'test-journal',
|
'test-journal',
|
||||||
'test-primitive',
|
'test-primitive',
|
||||||
|
'test-sparse-pipeline',
|
||||||
]
|
]
|
||||||
|
|
||||||
cogl_test_conformance_includes = [
|
cogl_test_conformance_includes = [
|
||||||
|
@ -1,8 +1,7 @@
|
|||||||
#include <cogl/cogl.h>
|
#include <cogl/cogl.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#include "test-declarations.h"
|
#include "tests/cogl-test-utils.h"
|
||||||
#include "test-utils.h"
|
|
||||||
|
|
||||||
typedef struct _TestState
|
typedef struct _TestState
|
||||||
{
|
{
|
||||||
@ -43,7 +42,7 @@ test_sparse_layer_combine (TestState *state)
|
|||||||
cogl_object_unref (tex2);
|
cogl_object_unref (tex2);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
static void
|
||||||
test_sparse_pipeline (void)
|
test_sparse_pipeline (void)
|
||||||
{
|
{
|
||||||
TestState state;
|
TestState state;
|
||||||
@ -61,3 +60,6 @@ test_sparse_pipeline (void)
|
|||||||
g_print ("OK\n");
|
g_print ("OK\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
COGL_TEST_SUITE (
|
||||||
|
g_test_add_func ("/sparse-pipeline", test_sparse_pipeline);
|
||||||
|
)
|
Loading…
x
Reference in New Issue
Block a user